latex-docker/Dockerfile.archlinux
Markus Pesch 9696d303c9
Some checks failed
continuous-integration/drone/push Build is failing
fix: remove arch linux pkgs from cache
2023-06-08 18:34:14 +02:00

26 lines
520 B
Docker

# 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 \
texlive-most && \
rm --recursive --force /var/cache/pacman/pkg
ENV PATH=/usr/bin/vendor_perl:${PATH}
# Workspace
WORKDIR /workspace
VOLUME [ "/workspace" ]