build(docker/backend): reintroduce apt-get update

This commit is contained in:
Sarah Vaupel 2024-11-28 10:57:24 +01:00
parent 33ccd36a14
commit a2bd5c35c8

View File

@ -1,11 +1,12 @@
FROM devfra.azurecr.io/de.fraport.build/tools:1.1.0
# debug info
RUN lsb_release -a
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
RUN apt-get -y 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
ENV LANG=en_US.UTF-8