Files
2026-05-22 20:48:54 +02:00

10 lines
425 B
Docker

FROM archlinux:latest
WORKDIR /notes
RUN pacman --noconfirm -Syu && pacman --noconfirm -S git texlive-basic texlive-latex texlive-binextra texlive-mathscience texlive-latexextra texlive-fontsextra texlive-bibtexextra biber perl perl-mozilla-ca
RUN ln -s /usr/bin/vendor_perl/biber /usr/bin/biber
RUN git config --global --add safe.directory /notes
CMD ["bash", "./utils/compile.sh", "./src", "./.compiled", "./.currpdfs"]