dockerfiles/texlive/Dockerfile
Michael 7eea00edf3 Replaced deprecated MAINTAINER with LABEL (#242)
Signed-off-by: Michael Käufl <dockerfiles@c.michael-kaeufl.de>
2017-03-09 10:14:37 -08:00

17 lines
415 B
Docker

# 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:stretch
LABEL maintainer "Christian Koep <christian.koep@fom-net.de>"
RUN apt-get update && apt-get install -y \
texlive-full \
biber \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*