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/*