Browse Source

chore: Set DEBIAN_FRONTEND=noninteractive in docker builds

Found in #6396.

Not needed yet, but will be in later versions of apt-get, so might as
well add it now so we don't forget.
reviewable/pr6398/r1
Anthony Bilinski 4 years ago
parent
commit
b0083e7d38
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
  1. 2
      docker/Dockerfile.debian
  2. 2
      docker/Dockerfile.ubuntu

2
docker/Dockerfile.debian

@ -16,6 +16,8 @@ @@ -16,6 +16,8 @@
FROM debian:stretch
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get -y --force-yes install \
automake \

2
docker/Dockerfile.ubuntu

@ -16,6 +16,8 @@ @@ -16,6 +16,8 @@
FROM ubuntu:16.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get -y --force-yes install \
build-essential \

Loading…
Cancel
Save