dockerfiles/texlive/Dockerfile
Jess Frazelle 102da0ff33
update base images
Signed-off-by: Jess Frazelle <me@jessfraz.com>
2016-09-19 11:31:11 -07:00

17 lines
407 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
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/*