latex-docker/Dockerfile.archlinux

26 lines
520 B
Docker
Raw Normal View History

2021-08-31 16:29:06 +00:00
# Base-Image
FROM docker.io/library/archlinux:latest
# Labels
LABEL maintainer="Markus Pesch <markus.pesch@cryptic.systems>"
# Runs
RUN pacman --sync --refresh --noconfirm --sysupgrade
RUN pacman --sync --noconfirm \
biber \
curl \
git \
gnuplot \
make \
python-pygments \
texlive-bin \
texlive-lang \
2023-06-08 16:34:14 +00:00
texlive-most && \
rm --recursive --force /var/cache/pacman/pkg
2021-08-31 16:29:06 +00:00
ENV PATH=/usr/bin/vendor_perl:${PATH}
# Workspace
WORKDIR /workspace
VOLUME [ "/workspace" ]