This repository has been archived on 2026-08-21. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
latex-docker/Dockerfile.archlinux
T
volker.raschek df71b11bf2
Lint Markdown files / markdown-lint (push) Successful in 10s
Build / build-arch-linux (push) Successful in 15m47s
fix(Dockerfile): add textlive and textlive-doc pkg
2026-08-21 10:25:18 +02:00

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