latexmk/Dockerfile
2023-05-15 08:45:02 +02:00

10 lines
363 B
Docker

FROM archlinux
RUN pacman -Syu --noconfirm texlive-most texlive-lang texlive-bibtexextra texlive-fontsextra biber
RUN mkdir -p /usr/locale/share/fonts/
RUN curl -Lo /usr/locale/share/fonts/fira-math.otf https://github.com/firamath/firamath/releases/download/v0.3.4/FiraMath-Regular.otf
RUN fc-cache
COPY entrypoint.sh /root/
ENTRYPOINT ["/root/entrypoint.sh"]