From 6285d15873ff148eba559befa9928fcdabb3668c Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 12 Sep 2023 10:25:01 +0200 Subject: [PATCH] buntu base container should be sufficient --- automation/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 automation/Dockerfile diff --git a/automation/Dockerfile b/automation/Dockerfile new file mode 100644 index 0000000..12c4441 --- /dev/null +++ b/automation/Dockerfile @@ -0,0 +1,6 @@ +FROM ubuntu:focal + +RUN apt-get update +RUN apt-get --yes upgrade +# Required in case tzdata is a installed, won't install otherwise +ARG DEBIAN_FRONTEND=noninteractive