Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOCKER] Latex: upgrade base image to debian:12.8 #205

Merged
merged 1 commit into from
Nov 19, 2024
Merged
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 docker/latex/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:11.5
FROM debian:12.8

LABEL org.opencontainers.image.source = "https://github.com/marco-lancini/utils"

Check warning on line 3 in docker/latex/Dockerfile

View workflow job for this annotation

GitHub Actions / run-docker / build

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "LABEL key=value" should be used instead of legacy "LABEL key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

# Install packages
RUN apt update && \
Expand All @@ -15,7 +15,7 @@

# Install the roboto font
WORKDIR /root
RUN wget http://mirror.ctan.org/install/fonts/roboto.tds.zip
RUN wget --no-check-certificate http://mirror.ctan.org/install/fonts/roboto.tds.zip

WORKDIR /root/texmf
RUN unzip /root/roboto.tds.zip && \
Expand Down
Loading