disable interactive frontend for apt in docker builds
This commit is contained in:
parent
3480502012
commit
31c2d2ee7f
|
@ -61,13 +61,13 @@ jobs:
|
||||||
[[ "${{ matrix.release }}" == "bionic" ]] && \
|
[[ "${{ matrix.release }}" == "bionic" ]] && \
|
||||||
cat <<EOF >> Dockerfile
|
cat <<EOF >> Dockerfile
|
||||||
RUN apt-get update && \
|
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
|
add-apt-repository -y ppa:libretime/libretime
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
cat <<EOF >> Dockerfile
|
cat <<EOF >> Dockerfile
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get -y install \
|
DEBIAN_FRONTEND=noninteractive apt-get -y install \
|
||||||
python3 \
|
python3 \
|
||||||
python3-pip \
|
python3-pip \
|
||||||
$(cat packages.list)
|
$(cat packages.list)
|
||||||
|
|
Loading…
Reference in New Issue