mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
54c5cdb6c0
Signed-off-by: Jess Frazelle <acidburn@jessfraz.com>
17 lines
419 B
Docker
17 lines
419 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:bullseye-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/*
|