feat(#3): Use Latex for PDF output

This commit is contained in:
2025-12-22 10:34:03 +01:00
parent 374c8d8905
commit 9999ac3bb4
12 changed files with 473 additions and 29 deletions

View File

@@ -23,6 +23,15 @@ FROM eclipse-temurin:21-jre-alpine AS runner
WORKDIR /app
# Install TeXLive and LuaLaTeX
RUN apk add --no-cache \
texlive-luatex \
texmf-dist-plaingeneric \
texmf-dist-latexrecommended \
texmf-dist-latexextra \
texmf-dist-langgerman \
texmf-dist-fontsextra
RUN addgroup -S spring && adduser -S spring -G spring
USER spring:spring