dockerfiles/texlive/Dockerfile
Jess Frazelle 40314b6356
change to buster slim
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-09-14 10:09:44 -04:00

17 lines
417 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:buster-slim
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/*