Merge pull request #869 from justincormack/debian-noninteractive

Force Debian installs to never prompt the user
This commit is contained in:
Justin Cormack 2016-12-12 15:36:34 -08:00 committed by GitHub
commit 3575986414
2 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,4 @@
FROM debian:stable
RUN apt-get update && apt-get -y upgrade && apt-get install -y ca-certificates
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get -yq upgrade && apt-get install -yq ca-certificates

View File

@ -1,3 +1,4 @@
FROM debian:testing
RUN apt-get update && apt-get -y upgrade && apt-get install -y qemu-user-static
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get -yq upgrade && apt-get install -yq qemu-user-static