documents/Containerfile
ndsboy 9f9090e5b8
Some checks failed
deploy / deploy (push) Failing after 24s
feat: build in forgejo
2025-02-24 21:52:59 +00:00

16 lines
No EOL
603 B
Docker

FROM docker.io/library/alpine AS build
ENV TYPST_FONT_PATHS=.
RUN wget -O ubuntu.ttf https://cdn.jsdelivr.net/fontsource/fonts/ubuntu@latest/latin-400-normal.ttf &&\
wget -O noto.ttf https://cdn.jsdelivr.net/fontsource/fonts/noto-sans@latest/latin-400-normal.ttf
RUN typst c 3d-druck-agb.typ &&\
typst c beitragsordnung.typ &&\
typst c beleg.typ &&\
typst c datenschutz.typ &&\
typst c haftungsausschluss.typ &&\
typst c mitgliedsantrag.typ &&\
typst c satzung.typ &&\
typst c werkstatt-agb.typ &&\
typst c werkstatt-regeln.typ
FROM scratch
COPY --from=build *.pdf .