summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Hansson <hansson.mattias@gmail.com>2019-03-28 18:32:39 +0100
committerNico Williams <nico@cryptonector.com>2019-03-29 08:19:41 -0500
commitbcd594ed6957ec4fb996e2a37a9e68b94e898ac6 (patch)
tree68f1bb2d09611e1113556e284f5ce74bebe49c6d
parent3c4fcb1594694e15b83dc05094cd1dd61f5c7dcc (diff)
Dockerfile: Set noninteractive
Configure the environment to inform debconf that it's running in noninteractive mode, to avoid some warnings.
-rw-r--r--Dockerfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index d35e4ada..8860eb01 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,8 @@
FROM debian:8
+ENV DEBIAN_FRONTEND=noninteractive \
+ DEBCONF_NONINTERACTIVE_SEEN=true
+
COPY . /app
# get dependencies, build, and remove anything we don't need for running jq.