From 997bc2bc0087c350a29d09084da72f1e1b07cfc5 Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Thu, 27 Jun 2024 03:43:00 +0200 Subject: [PATCH] chore(Dockerfile): add first Dockerfile stub for base build image --- Dockerfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..fd9328ff2 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +from registry.uniworx.de/uniworx/containers/debian:12.5 + +run apt-get -y update + +# Required packages +run apt-get -y install git g++ libsodium-dev haskell-stack zsh + +# packages that we might require (copied from uni2work) +# TODO: review +run apt-get -y install --no-install-recommends locales-all ca-certificates + +run stack install happy