10 lines
363 B
Docker
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"]
|