Files
brevetcard/Dockerfile
T

12 lines
279 B
Docker
Raw Normal View History

FROM debian:bookworm-slim
2026-02-03 13:46:49 +01:00
RUN apt-get update && apt-get install -y --no-install-recommends \
texlive-latex-recommended \
texlive-pictures \
texlive-fonts-recommended \
2026-02-03 13:46:49 +01:00
make \
python3 \
python3-yaml \
2026-02-03 13:46:49 +01:00
&& rm -rf /var/lib/apt/lists/*
WORKDIR /workspace