From a00320871d0e3b5f36bede1eb28d59e6e754abcd Mon Sep 17 00:00:00 2001 From: Max Kratz Date: Sat, 20 Jul 2024 19:40:23 +0200 Subject: [PATCH] Adds TeX Live 2023 archive repository to tlmgr steps in Dockerfile --- ldap-overleaf-sl/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ldap-overleaf-sl/Dockerfile b/ldap-overleaf-sl/Dockerfile index 4b79aad..b72efd8 100644 --- a/ldap-overleaf-sl/Dockerfile +++ b/ldap-overleaf-sl/Dockerfile @@ -22,8 +22,8 @@ RUN npm install -g npm && \ apt-get update && \ apt-get -y install libxml-libxslt-perl cpanminus libbtparse2 python-pygments && \ # now install latest texlive2023 from tlmgr - tlmgr update --self --all && \ - tlmgr install scheme-full --verify-repo=none && \ + tlmgr update --self --all -repository http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2023/tlnet-final/ --no-verify-downloads && \ + tlmgr install scheme-full --verify-repo=none -repository http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2023/tlnet-final/ && \ apt-get clean && \ rm -rf /var/lib/apt/lists/*