From 33ccd36a1403724bfd03a5d33a7ccf879a41cafb Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Tue, 26 Nov 2024 13:05:34 +0000 Subject: [PATCH] ci(docker/backend): remove apt-get update due to missing connection to archive.ubuntu.com --- docker/backend/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/backend/Dockerfile b/docker/backend/Dockerfile index 56ca791c7..84805d522 100644 --- a/docker/backend/Dockerfile +++ b/docker/backend/Dockerfile @@ -2,10 +2,10 @@ FROM devfra.azurecr.io/de.fraport.build/tools:1.1.0 RUN lsb_release -a -RUN apt-get update && apt-get -y install inotify-tools -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 +RUN apt-get -y install inotify-tools +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 ENV LANG=en_US.UTF-8