|
|
@ -1,20 +1,24 @@ |
|
|
|
FROM ubuntu:16.04 |
|
|
|
FROM ubuntu:20.04 |
|
|
|
|
|
|
|
|
|
|
|
LABEL maintainer="mbredel https://github.com/mbredel" |
|
|
|
LABEL maintainer="mbredel https://github.com/mbredel" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Set the frontend to noninteractive to configure the time zone |
|
|
|
|
|
|
|
ARG DEBIAN_FRONTEND=noninteractive |
|
|
|
|
|
|
|
|
|
|
|
# Install packages for building the LaTeX template. |
|
|
|
# Install packages for building the LaTeX template. |
|
|
|
RUN apt-get -qq update && apt-get install -y --no-install-recommends \ |
|
|
|
RUN apt-get -qq update && apt-get install -y --no-install-recommends \ |
|
|
|
make \ |
|
|
|
make \ |
|
|
|
apt-utils \ |
|
|
|
ghostscript \ |
|
|
|
texlive \ |
|
|
|
texlive \ |
|
|
|
texlive-bibtex-extra \ |
|
|
|
texlive-bibtex-extra \ |
|
|
|
texlive-fonts-extra \ |
|
|
|
texlive-fonts-extra \ |
|
|
|
texlive-lang-english \ |
|
|
|
texlive-lang-english \ |
|
|
|
texlive-lang-german \ |
|
|
|
texlive-lang-german \ |
|
|
|
texlive-latex-extra \ |
|
|
|
texlive-latex-extra \ |
|
|
|
texlive-math-extra \ |
|
|
|
|
|
|
|
texlive-publishers \ |
|
|
|
texlive-publishers \ |
|
|
|
texlive-science \ |
|
|
|
texlive-science \ |
|
|
|
|
|
|
|
texlive-pstricks \ |
|
|
|
|
|
|
|
texlive-pictures \ |
|
|
|
chktex |
|
|
|
chktex |
|
|
|
|
|
|
|
|
|
|
|
# Command to actually build the LaTeX code. |
|
|
|
# Command to actually build the LaTeX code. |
|
|
|