From 311cb0e3e38585a747a19dc909a2f70fd39696c0 Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Tue, 10 Dec 2024 15:33:29 +0100 Subject: [PATCH] build(docker/backend): tmp-remove more deps --- docker/backend/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/backend/Dockerfile b/docker/backend/Dockerfile index 3bb2444b5..ad3170f49 100644 --- a/docker/backend/Dockerfile +++ b/docker/backend/Dockerfile @@ -3,6 +3,8 @@ FROM devfra.azurecr.io/de.fraport.build/tools:1.1.0 # DEBUG: list apt sources RUN grep ^ /etc/apt/sources.list /etc/apt/sources.list.d/* +ENV LANG=en_US.UTF-8 + # compile-time dependencies RUN apt-get -y update && apt-get -y install haskell-stack RUN apt-get -y update && apt-get -y install llvm @@ -11,11 +13,9 @@ RUN apt-get -y update && apt-get -y install llvm # RUN apt-get -y update && apt-get -y install locales locales-all # run-time dependencies for uniworx binary -RUN apt-get -y update && apt-get -y install fonts-roboto +# RUN apt-get -y update && apt-get -y install fonts-roboto # RUN apt-get -y update && apt-get -y install pdftk -RUN apt-get -y update && apt-get -y install texlive-base luatex - -ENV LANG=en_US.UTF-8 +# RUN apt-get -y update && apt-get -y install texlive-base luatex # locally these two should be identical, so that compilation results are written out into the file dir. # in CI-pipelines these two should be different, so that the container caches the compilation results.