From 52bada5f17d29c55b4522ef66cd49218b2f2373c Mon Sep 17 00:00:00 2001 From: Christian Koep Date: Sat, 6 Feb 2016 22:45:02 +0100 Subject: [PATCH] Add texlive (LaTeX compiler) See https://www.tug.org/texlive/ --- texlive/Dockerfile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 texlive/Dockerfile diff --git a/texlive/Dockerfile b/texlive/Dockerfile new file mode 100644 index 0000000..a440bbc --- /dev/null +++ b/texlive/Dockerfile @@ -0,0 +1,16 @@ +# TeX Live and biber +# +# Example usage: +# docker run -it -w '/mnt' -v `pwd`:/mnt texlive /bin/bash -c './compile.sh' +# +# Example use case: +# https://github.com/andygrunwald/FOM-LaTeX-Template + +FROM debian:jessie +MAINTAINER Christian Koep + +RUN apt-get update && apt-get install -y \ + texlive-full \ + biber \ + --no-install-recommends \ + && rm -rf /var/lib/apt/lists/*