Update Dockerfile to include options for no documentation and source installation during TeX Live installation

This commit is contained in:
Edgar P. Burkhart 2025-05-08 20:06:38 +02:00
parent 5b520cd793
commit 6dfe77a447
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227

View file

@ -5,7 +5,7 @@ RUN cd /tmp && \
curl -LO https://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz && \
zcat < install-tl-unx.tar.gz | tar xvf - && \
cd install-tl-2* && \
perl ./install-tl --no-interaction
perl ./install-tl --no-interaction --no-doc-install --no-src-install
ENV PATH="/usr/local/texlive/2025/bin/x86_64-linux:$PATH"