latex-docker/Dockerfile.archlinux
Markus Pesch 458bee010a
Some checks failed
Lint Markdown files / markdown-lint (push) Successful in 13s
Update Docker Hub Description / update-description-on-hub-docker-io (push) Successful in 10s
Build / build-arch-linux (push) Failing after 15m2s
fix(ci): replace drone with gitea actions
2025-05-09 11:38:53 +02:00

25 lines
507 B
Docker

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" ]