Initial Commit
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-08-31 18:29:06 +02:00
commit 86ead8922d
13 changed files with 789 additions and 0 deletions

24
Dockerfile.archlinux Normal file
View File

@ -0,0 +1,24 @@
# 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
ENV PATH=/usr/bin/vendor_perl:${PATH}
# Workspace
WORKDIR /workspace
VOLUME [ "/workspace" ]