Files
unibo-ai-notes/Dockerfile
T
2026-05-22 20:03:26 +02:00

11 lines
396 B
Docker

FROM archlinux:latest
WORKDIR /notes
RUN pacman --noconfirm -Sy
RUN pacman --noconfirm -S git
RUN pacman --noconfirm -S texlive-basic texlive-latex texlive-binextra texlive-mathscience texlive-latexextra texlive-fontsextra texlive-bibtexextra biber libxcrypt-compat
RUN git config --global --add safe.directory /notes
CMD ["bash", "./utils/compile.sh", "./src", "./.compiled", "./.currpdfs"]