19 lines
350 B
Docker
19 lines
350 B
Docker
FROM ubuntu:20.04
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
RUN apt-get update &&\
|
|
apt-get install -y \
|
|
texlive \
|
|
texlive-latex-recommended \
|
|
texlive-science \
|
|
texlive-fonts-extra \
|
|
texlive-latex-extra \
|
|
texlive-extra-utils \
|
|
texlive-bibtex-extra \
|
|
texlive-xetex \
|
|
biber \
|
|
make \
|
|
latexmk &&\
|
|
apt-get install -y \
|
|
fonts-sil-charis
|