initial image

This commit is contained in:
2026-06-22 23:56:48 +02:00
commit b083b62495
6 changed files with 204 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM debian:trixie-slim
# texlive-full already pulls latexmk + biber; listed explicitly so intent is clear.
RUN apt-get update && apt-get install -y --no-install-recommends \
texlive-full \
latexmk \
biber \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /data
ENTRYPOINT ["latexmk"]