Initial commit.

This commit is contained in:
Michael Bredel
2018-01-09 18:51:37 +01:00
parent bcdd66e691
commit 03f8a36d21

22
Dockerfile.local Normal file
View File

@@ -0,0 +1,22 @@
FROM ubuntu:16.04
MAINTAINER mbredel "https://github.com/mbredel"
# Install packages for building the LaTeX template.
RUN apt-get -qq update && apt-get install -y --no-install-recommends \
make \
apt-utils \
ghostscript \
texlive \
texlive-bibtex-extra \
texlive-fonts-extra \
texlive-lang-english \
texlive-lang-german \
texlive-latex-extra \
texlive-math-extra \
texlive-publishers \
texlive-science \
chktex
# Command to actually build the LaTeX code.
CMD ["make", "--directory", "/thesis-template/", "publish"]