chroe(latex): adjust dockerfiles to be similar with respect to latex

This commit is contained in:
Steffen Jost 2025-03-06 18:23:11 +01:00
parent bb047da360
commit 1521d08355
2 changed files with 11 additions and 2 deletions

View File

@ -23,7 +23,14 @@ 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
apt-get -y update && apt-get -y install \
texlive-latex-recommended \
texlive-luatex \
texlive-plain-generic \
texlive-fonts-recommended \
texlive-fonts-extra \
texlive-lang-german \
texlive-lang-english
ARG PROJECT_DIR=/fradrive
ENV PROJECT_DIR=${PROJECT_DIR}

View File

@ -14,10 +14,12 @@ ENV DEBIAN_FRONTEND=noninteractive
ENV TZ=Etc/UTC
RUN apt-get update && apt-get -y install libpq-dev
RUN apt-get update && apt-get -y install libsodium-dev
RUN apt-get update && apt-get -y install fonts-roboto
# TODO: minimize texlive dependencies, switch to basic schemes where possible
RUN apt-get update && apt-get -y install \
texlive-latex-base \
texlive-latex-commended \
texlive-luatex \
texlive-plain-generic \
texlive-fonts-recommended \
texlive-fonts-extra \
texlive-lang-english \