Skip to content
Closed
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM docker.io/redhat/ubi9-minimal:9.6-1758184547
FROM docker.io/redhat/ubi9-minimal:9.7-1764578379
ARG TEXLIVE_MIRROR=https://mirrors.mit.edu/CTAN/systems/texlive/tlnet/
ENV PATH="${PATH}:/root/.local/bin:/usr/local/texlive/2025/bin/x86_64-linux"

RUN microdnf update -y \

Check warning on line 5 in Dockerfile

View workflow job for this annotation

GitHub Actions / kics

[MEDIUM] Missing Version Specification In dnf install

Specifying a package version allows to reduce failures due to unanticipated changes in required packages.
&& microdnf install -y \
ca-certificates \
git \
Expand All @@ -15,7 +15,7 @@

WORKDIR /tmp

RUN curl -L ${TEXLIVE_MIRROR}/install-tl-unx.tar.gz | tar xz

Check warning on line 18 in Dockerfile

View workflow job for this annotation

GitHub Actions / kics

[LOW] Multiple RUN, ADD, COPY, Instructions Listed

Multiple commands (RUN, COPY, ADD) should be grouped in order to reduce the number of layers.
RUN perl ./install-tl-*/install-tl -v --no-interaction --scheme=minimal --no-doc-install --repository=${TEXLIVE_MIRROR} && rm -rf ./install-tl-*

RUN tlmgr install --repository=${TEXLIVE_MIRROR} \
Expand Down
Loading