27 lines
500 B
Docker
27 lines
500 B
Docker
|
# Build-Arguments
|
||
|
ARG TAG=latest
|
||
|
|
||
|
# Base-Image
|
||
|
FROM docker.io/library/fedora:${TAG}
|
||
|
|
||
|
# Labels
|
||
|
LABEL maintainer="Markus Pesch <markus.pesch@cryptic.systems>"
|
||
|
|
||
|
# Runs
|
||
|
RUN yum update --assumeyes
|
||
|
RUN yum install --assumeyes \
|
||
|
biber \
|
||
|
curl \
|
||
|
git \
|
||
|
gnuplot \
|
||
|
latexmk \
|
||
|
make \
|
||
|
python-pygments \
|
||
|
texlive-collection-bibtexextra \
|
||
|
texlive-collection-fontutils \
|
||
|
texlive-collection-langeuropean
|
||
|
|
||
|
# Workspace
|
||
|
WORKDIR /workspace
|
||
|
VOLUME [ "/workspace" ]
|