1
Fork 0
latexmk/Dockerfile

11 lines
361 B
Docker
Raw Normal View History

2023-05-14 18:29:36 +02:00
FROM archlinux
RUN pacman -Syu --noconfirm texlive-most texlive-lang texlive-bibtexextra texlive-fontsextra biber
2023-05-15 08:57:38 +02:00
RUN mkdir -p /usr/local/share/fonts/
RUN curl -Lo /usr/local/share/fonts/fira-math.otf https://github.com/firamath/firamath/releases/download/v0.3.4/FiraMath-Regular.otf
2023-05-14 18:29:36 +02:00
RUN fc-cache
COPY entrypoint.sh /root/
ENTRYPOINT ["/root/entrypoint.sh"]