13 lines
243 B
Docker
13 lines
243 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 \
|
||
|
latexmk
|