From 03f8a36d211f6ce30027170da6a19ef3610f6b3b Mon Sep 17 00:00:00 2001 From: Michael Bredel Date: Tue, 9 Jan 2018 18:51:37 +0100 Subject: [PATCH] Initial commit. --- Dockerfile.local | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Dockerfile.local diff --git a/Dockerfile.local b/Dockerfile.local new file mode 100644 index 0000000..7a3ba0e --- /dev/null +++ b/Dockerfile.local @@ -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"]