ci(docker/backend): remove apt-get update due to missing connection to archive.ubuntu.com

This commit is contained in:
Sarah Vaupel 2024-11-26 13:05:34 +00:00
parent 29427a02c6
commit 33ccd36a14

View File

@ -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