summaryrefslogtreecommitdiff
path: root/server/test/docker/templates/ubuntu-20.Dockerfile.in
diff options
context:
space:
mode:
Diffstat (limited to 'server/test/docker/templates/ubuntu-20.Dockerfile.in')
-rw-r--r--server/test/docker/templates/ubuntu-20.Dockerfile.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/server/test/docker/templates/ubuntu-20.Dockerfile.in b/server/test/docker/templates/ubuntu-20.Dockerfile.in
index a039e5e..515e5f5 100644
--- a/server/test/docker/templates/ubuntu-20.Dockerfile.in
+++ b/server/test/docker/templates/ubuntu-20.Dockerfile.in
@@ -1,3 +1,5 @@
# -*- dockerfile -*-
FROM ubuntu:focal
-RUN apt-get update -y && apt-get install -y gcc libpoppler-glib-dev
+ARG DEBIAN_FRONTEND=noninteractive
+# Need to install tzdata here to avoid stupid prompts when running package install via autobuild
+RUN apt-get update -y && apt-get install -y tzdata