diff --git a/Dockerfile_build_ubuntu32 b/Dockerfile_build_ubuntu32 index bb0fd65331..26d0777e63 100644 --- a/Dockerfile_build_ubuntu32 +++ b/Dockerfile_build_ubuntu32 @@ -1,6 +1,6 @@ FROM 32bit/ubuntu:14.04 -RUN apt-get update && apt-get install -y \ +RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \ python-software-properties \ software-properties-common \ wget \ diff --git a/Dockerfile_build_ubuntu64 b/Dockerfile_build_ubuntu64 index 82a6816f4c..a4873b5ace 100644 --- a/Dockerfile_build_ubuntu64 +++ b/Dockerfile_build_ubuntu64 @@ -1,6 +1,6 @@ FROM ubuntu:trusty -RUN apt-get update && apt-get install -y \ +RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \ python-software-properties \ software-properties-common \ wget \ diff --git a/Dockerfile_build_ubuntu64_git b/Dockerfile_build_ubuntu64_git index a54bbf7190..7059500ab7 100644 --- a/Dockerfile_build_ubuntu64_git +++ b/Dockerfile_build_ubuntu64_git @@ -1,6 +1,6 @@ FROM ubuntu:trusty -RUN apt-get update && apt-get install -y \ +RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \ python-software-properties \ software-properties-common \ wget \ diff --git a/Dockerfile_test_ubuntu32 b/Dockerfile_test_ubuntu32 index 2bd6b62fc4..af505b5cd4 100644 --- a/Dockerfile_test_ubuntu32 +++ b/Dockerfile_test_ubuntu32 @@ -1,8 +1,8 @@ FROM 32bit/ubuntu:14.04 -RUN apt-get update && apt-get install -y python-software-properties software-properties-common git +RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y python-software-properties software-properties-common git RUN add-apt-repository ppa:evarlast/golang1.4 -RUN apt-get update && apt-get install -y -o Dpkg::Options::="--force-overwrite" golang-go +RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y -o Dpkg::Options::="--force-overwrite" golang-go ENV GOPATH=/root/go RUN mkdir -p /root/go/src/github.com/influxdata/influxdb