mirror of
https://github.com/agresdominik/texlive.git
synced 2026-07-21 09:10:54 +00:00
12 lines
306 B
Docker
12 lines
306 B
Docker
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"]
|