From e069d6be46ad0f764a504c6eee1d977e86c3b945 Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Mon, 10 Mar 2025 17:38:30 +0100 Subject: [PATCH] build(docker/backend): install texlive only for use with tlmgr; setup tlmgr --- docker/backend/Dockerfile | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/docker/backend/Dockerfile b/docker/backend/Dockerfile index db3ccb209..699e79c04 100644 --- a/docker/backend/Dockerfile +++ b/docker/backend/Dockerfile @@ -17,13 +17,15 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \ apt-get -y update && apt-get install -y --no-install-recommends locales locales-all # run-time dependencies for uniworx binary -RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \ ---mount=type=cache,target=/var/lib/apt,sharing=locked \ -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 --mount=type=cache,target=/var/cache/apt,sharing=locked \ ---mount=type=cache,target=/var/lib/apt,sharing=locked \ -apt-get -y update && apt-get -y install texlive-latex-recommended texlive-luatex texlive-plain-generic texlive-lang-german texlive-lang-english +# RUN apt-get -y update && apt-get -y install \ +# texlive texlive-latex-recommended texlive-luatex texlive-plain-generic texlive-lang-german texlive-lang-english +RUN apt-get -y update && apt-get -y install texlive +# RUN ls /usr/local/texlive +# RUN chown -hR root /usr/local/texlive/2018 +RUN tlmgr option repository ftp://tug.org/historic/systems/texlive/2018/tlnet-final +RUN tlmgr update --self --all ARG PROJECT_DIR=/fradrive ENV PROJECT_DIR=${PROJECT_DIR}