Skip to content
Open
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
12 changes: 6 additions & 6 deletions images/src/latex/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# syntax=docker/dockerfile:1.9
# syntax=docker/dockerfile:1.25
# renovate: datasource=custom.chktex depName=chktex
ARG CHKTEX_VERSION=1.7.9
ARG CHKTEX_VERSION=1.7.10
# renovate: datasource=custom.texlive depName=texlive
ARG TEXLIVE_VERSION=2024
ARG TEXLIVE_VERSION=2026

ARG TEXDIR="/usr/local/texlive"
ARG TEXUSERDIR="/texlive-user"
Expand All @@ -16,7 +16,7 @@ ARG DOCFILES=0
ARG SRCFILES=0

#region chktex Builder Stage ############################################################
FROM mcr.microsoft.com/devcontainers/base:noble AS chktex-builder
FROM mcr.microsoft.com/devcontainers/base:resolute AS chktex-builder
ARG CHKTEX_MIRROR
ARG CHKTEX_VERSION
ENV DEBIAN_FRONTEND="noninteractive"
Expand All @@ -33,7 +33,7 @@ RUN make
#endregion ##############################################################################

#region TeXLive Builder Stage ###########################################################
FROM mcr.microsoft.com/devcontainers/base:noble AS texlive-builder
FROM mcr.microsoft.com/devcontainers/base:resolute AS texlive-builder
ARG TEXLIVE_VERSION
ARG TEXLIVE_MIRROR
ARG TEXDIR
Expand Down Expand Up @@ -107,7 +107,7 @@ EOF
#endregion ##############################################################################

#region Output Stage ####################################################################
FROM mcr.microsoft.com/devcontainers/base:noble AS output
FROM mcr.microsoft.com/devcontainers/base:resolute AS output
ENV DEBIAN_FRONTEND="noninteractive"
ARG TEXDIR
ARG TEXUSERDIR
Expand Down
Loading