1
Fork 0
latexmk/Dockerfile

11 lines
361 B
Docker

FROM archlinux
RUN pacman -Syu --noconfirm texlive-most texlive-lang texlive-bibtexextra texlive-fontsextra biber
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
RUN fc-cache
COPY entrypoint.sh /root/
ENTRYPOINT ["/root/entrypoint.sh"]