Skip to content
Snippets Groups Projects
Verified Commit bc0a8914 authored by Jesper Zedlitz's avatar Jesper Zedlitz
Browse files

Skript zum Bauen im Docker-Container

parent f13f7003
Branches master
No related tags found
No related merge requests found
FROM alpine:3.21
RUN apk add --no-cache \
ruby texlive make librsvg hugo font-liberation poppler-utils \
rsvg-convert pandoc texmf-dist-latexrecommended \
texmf-dist-fontsrecommended texmf-dist-langgerman
WORKDIR /work
CMD ["make", "pdf", "web"]
#!/bin/sh
# create Docker image if it does not exist
docker image inspect guideline-builder > /dev/null || docker build -t guideline-builder .
docker run --rm -v "$(pwd)":/work guideline-builder
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment