-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from maxkratz/feature/set-ctan-mirror-in-2024
Switches 2024 CTAN repo to upstream
- Loading branch information
Showing
3 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,17 +4,17 @@ LABEL maintainer="Max Kratz <[email protected]>" | |
|
||
# Install texlive | ||
COPY texlive.profile . | ||
RUN wget http://ctan.mirror.norbert-ruehl.de/systems/texlive/tlnet/install-tl-unx.tar.gz | ||
RUN wget http://dante.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 http://dante.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" | ||
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 | ||
|