Files
unibo-ai-notes/Dockerfile
2024-10-25 11:15:27 +02:00

9 lines
325 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
CMD ["bash", "./utils/compile.sh", "./src", "./.compiled", "./.currpdfs"]