diff --git a/alpine/Dockerfile b/alpine/Dockerfile index c16c812..a683500 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -8,9 +8,10 @@ RUN apk add --no-cache \ xz \ fontconfig COPY ./texlive.profile ./ -RUN wget -nv https://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz +RUN wget -nv ftp://tug.org/texlive/historic/2023/tlnet-final/install-tl-unx.tar.gz RUN tar -xzf ./install-tl-unx.tar.gz --strip-components=1 -RUN ./install-tl --profile=texlive.profile +RUN ./install-tl --profile=texlive.profile \ + --repository ftp://tug.org/texlive/historic/2023/tlnet-final/ RUN ln -sf /usr/local/texlive/*/bin/* /usr/local/bin/texlive RUN tlmgr install \ collection-fontsrecommended \ diff --git a/debian/Dockerfile b/debian/Dockerfile index 1bb87d9..ef28284 100644 --- a/debian/Dockerfile +++ b/debian/Dockerfile @@ -8,9 +8,10 @@ RUN apt-get install -y \ xz-utils \ fontconfig COPY ./texlive.profile ./ -RUN wget -nv https://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz +RUN wget -nv ftp://tug.org/texlive/historic/2023/tlnet-final/install-tl-unx.tar.gz RUN tar -xzf ./install-tl-unx.tar.gz --strip-components=1 -RUN ./install-tl --profile=texlive.profile +RUN ./install-tl --profile=texlive.profile \ + --repository ftp://tug.org/texlive/historic/2023/tlnet-final/ RUN ln -sf /usr/local/texlive/*/bin/* /usr/local/bin/texlive RUN tlmgr install \ collection-fontsrecommended \