Skip to content

Instantly share code, notes, and snippets.

@bastoker
Created December 13, 2022 22:41
Show Gist options
  • Save bastoker/77f3e703196439c2b49cf512ab347892 to your computer and use it in GitHub Desktop.
Save bastoker/77f3e703196439c2b49cf512ab347892 to your computer and use it in GitHub Desktop.
FROM ubuntu
RUN apt-get update
RUN apt-get -y install pandoc
RUN apt-get -y -q install texlive-latex-recommended
RUN DEBIAN_FRONTEND='noninteractive' apt-get -y install texlive-xetex
# RUN apt-get -y install texlive-fonts-extra
RUN apt-get -y install lmodern fontconfig fonts-noto
RUN apt-get -y install libfontconfig1 libfreetype6 tar wget perl gnupg gzip xzdec
# install Rosario font
RUN mkdir -p /usr/share/fonts/opentype/rosario
COPY rosario-font/* /usr/share/fonts/opentype/rosario
# refresh system font cache
RUN fc-cache -f -v
WORKDIR /data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment