Adds missing archive repository URL to 2022 Dockerfile

This commit is contained in:
Maximilian Kratz 2023-07-01 18:54:46 +02:00
parent aee9253109
commit 9bdbdfff97

View file

@ -6,7 +6,7 @@ LABEL maintainer="Max Kratz <account@maxkratz.com>"
COPY texlive.profile .
RUN wget http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2022/install-tl-unx.tar.gz
RUN tar xvzf install-tl-unx.tar.gz
RUN ./install-tl-*/install-tl -profile texlive.profile
RUN ./install-tl-*/install-tl -profile texlive.profile -repository http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2022/tlnet-final/ --no-verify-downloads
# Add texlive to path
ENV PATH="/usr/local/texlive/2022/bin/x86_64-linux:$PATH"