disable interactive frontend for apt in docker builds

This commit is contained in:
Kyle Robbertze 2021-09-09 20:16:22 +02:00
parent 3480502012
commit 31c2d2ee7f
1 changed files with 2 additions and 2 deletions

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)