You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
thesis/Dockerfile.local

25 lines
681 B

FROM ubuntu:20.04
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.
RUN apt-get -qq update && apt-get install -y --no-install-recommends \
make \
ghostscript \
texlive \
texlive-bibtex-extra \
texlive-fonts-extra \
texlive-lang-english \
texlive-lang-german \
texlive-latex-extra \
texlive-publishers \
texlive-science \
texlive-pstricks \
texlive-pictures \
chktex
# Command to actually build the LaTeX code.
CMD ["make", "--directory", "/thesis-template/", "publish"]