From 066afaa6895a9421aa43c7babf96053a5ae3fc29 Mon Sep 17 00:00:00 2001 From: Kyle Johnson Date: Fri, 24 Jan 2014 13:49:27 -0500 Subject: [PATCH] Let the conatiner know that there is no tty --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 5a2a6ab03..8cf8afa40 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,9 @@ FROM ubuntu MAINTAINER Kyle Johnson +# Let the conatiner know that there is no tty +ENV DEBIAN_FRONTEND noninteractive + # Resynchronize the package index files RUN apt-get update