Skip to content

Commit 0bd2568

Browse files
committed
Merge pull request #4076 from mboersma/debian-noninteractive
fix(Dockerfiles): silence apt-get TTY warnings
2 parents a045639 + e7589ca commit 0bd2568

5 files changed

Lines changed: 3 additions & 6 deletions

File tree

controller/Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
FROM alpine:3.1
22

3-
ENV DEBIAN_FRONTEND noninteractive
4-
53
# install common packages
64
RUN apk add --update-cache curl bash sudo && rm -rf /var/cache/apk/*
75

database/Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
FROM alpine:3.1
22

3-
ENV DEBIAN_FRONTEND noninteractive
4-
53
# install common packages
64
RUN apk add --update-cache curl bash sudo && rm -rf /var/cache/apk/*
75

mesos/build-marathon

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
FROM deis/mesos-template:#VERSION#
22

3+
ENV DEBIAN_FRONTEND noninteractive
34
ENV MARATHON_VERSION=#MARATHON_VERSION#
45

56
COPY build-marathon-jar.sh /tmp/build.sh

mesos/template

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
FROM ubuntu-debootstrap:14.04
22

3+
ENV DEBIAN_FRONTEND noninteractive
4+
35
COPY build-mesos.sh /tmp/build.sh
46

57
RUN DOCKER_BUILD=true MESOS="#VERSION#" /tmp/build.sh

router/image/Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
FROM alpine:3.1
22

3-
ENV DEBIAN_FRONTEND noninteractive
4-
53
# install common packages
64
RUN apk add --update-cache curl bash sudo && rm -rf /var/cache/apk/*
75

0 commit comments

Comments
 (0)