Merge pull request #1336 from paddatrapper/fix/docker-build-non-interactive

Disable interactive frontend for apt in docker builds
This commit is contained in:
Kyle Robbertze 2021-09-09 19:16:32 +00:00 committed by GitHub
commit daca0f3166
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -61,13 +61,13 @@ jobs:
[[ "${{ matrix.release }}" == "bionic" ]] && \
cat <<EOF >> Dockerfile
RUN apt-get update && \
apt-get install -y software-properties-common && \
DEBIAN_FRONTEND=noninteractive apt-get install -y software-properties-common && \
add-apt-repository -y ppa:libretime/libretime
EOF
cat <<EOF >> Dockerfile
RUN apt-get update && \
apt-get -y install \
DEBIAN_FRONTEND=noninteractive apt-get -y install \
python3 \
python3-pip \
$(cat packages.list)