From b0fe5c5b473fa99eeae50d9af17b6f18a57c823c Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Thu, 5 Sep 2024 12:23:32 +0200 Subject: [PATCH] build(docker/backend): apt-get update right before each install --- docker/backend/Dockerfile | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/docker/backend/Dockerfile b/docker/backend/Dockerfile index 2ee110faf..a17020fb5 100644 --- a/docker/backend/Dockerfile +++ b/docker/backend/Dockerfile @@ -1,11 +1,8 @@ -# TODO: switch to uniworx registry debian image -FROM debian:12.5 +FROM registry.uniworx.de/uniworx/containers/debian:12.5 -RUN apt-get -y update - -RUN apt-get -y install haskell-stack git -RUN apt-get -y install alex g++ happy libghc-zlib-dev libpq-dev libsodium-dev locales locales-all pkg-config -RUN apt-get -y install llvm +RUN apt-get -y update && apt-get -y install haskell-stack git +RUN apt-get -y update && apt-get -y install alex g++ happy libghc-zlib-dev libpq-dev libsodium-dev locales locales-all pkg-config +RUN apt-get -y update && apt-get -y install llvm ENV LANG=en_US.UTF-8