From 481ff9455ac1bbcfac173822c51d2f309d2464e4 Mon Sep 17 00:00:00 2001 From: Maximilian Kratz Date: Thu, 4 Jul 2024 14:32:23 +0200 Subject: [PATCH] Switches 2024 CTAN repo to upstream --- 2024/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/2024/Dockerfile b/2024/Dockerfile index 94bfbf2..2894419 100644 --- a/2024/Dockerfile +++ b/2024/Dockerfile @@ -4,9 +4,9 @@ LABEL maintainer="Max Kratz " # Install texlive COPY texlive.profile . -RUN wget http://ctan.mirror.norbert-ruehl.de/systems/texlive/tlnet/install-tl-unx.tar.gz +RUN wget https://ctan.org/tex-archive/systems/texlive/tlnet/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 https://ctan.org/tex-archive/systems/texlive/tlnet --no-verify-downloads # Add texlive to path ENV PATH="/usr/local/texlive/2024/bin/x86_64-linux:$PATH" @@ -14,7 +14,7 @@ ENV PATH="/usr/local/texlive/2024/bin/aarch64-linux:$PATH" ENV PATH="/usr/local/texlive/2024/bin/armhf-linux:$PATH" # Update tlmgr + tex-packages -RUN tlmgr update --self --all --reinstall-forcibly-removed +RUN tlmgr update --self --all --reinstall-forcibly-removed --verify-repo=none RUN luaotfload-tool -v -vvv -u WORKDIR /data