dockerfiles/texlive/Dockerfile

17 lines
413 B
Docker
Raw Normal View History

# 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
2017-04-04 09:19:34 +02:00
LABEL maintainer "Christian Koep <christiankoep@gmail.com>"
RUN apt-get update && apt-get install -y \
texlive-full \
biber \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*