FROM docker.io/texlive/texlive:latest ENV DEBIAN_FRONTEND=noninteractive ENV LANG=C.UTF-8 RUN apt-get update && apt-get install -y --no-install-recommends \ biber \ python3 \ python3-pip \ git \ inkscape \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* WORKDIR /data CMD ["latexmk", "-pdf", "-shell-escape", "thesis.tex"]