Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions images/texlive/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ WORKDIR /root
COPY common/texlive.profile /root/texlive.profile
COPY common/install-texlive.sh /root/install-texlive.sh

ARG texlive_version=2024
ARG scheme=basic
ARG texlive_version=
ARG scheme=
RUN echo "selected_scheme scheme-${scheme}" >> /root/texlive.profile \
&& sh /root/install-texlive.sh $texlive_version \
&& rm -f /root/texlive.profile \
Expand Down
2 changes: 1 addition & 1 deletion images/texlive/build.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$texlive_version = '2024'
$texlive_version = '2025'
$alpine_version = '3.20'

$schemes = @(
Expand Down
2 changes: 1 addition & 1 deletion images/texlive/common/install-texlive.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Adapted from
# https://raw.githubusercontent.com/pandoc/dockerfiles/8fdaeb6e3652438c3b657cc72def1109e42f641f/common/latex/install-texlive.sh

default_version=2024
default_version=2025
tlversion=${1:-"$default_version"}
installer_archive=install-tl-unx.tar.gz

Expand Down