Simplified the PDF gen quite a bit :)
All checks were successful
Docker Deploy / build-and-push (push) Successful in 4m37s

This commit is contained in:
2025-12-01 18:16:17 -07:00
parent b87357c175
commit 0998bacd86
11 changed files with 1074 additions and 1126 deletions

View File

@@ -54,20 +54,6 @@ RUN pnpm run build
FROM node:24-alpine AS runtime
# Install runtime dependencies for Playwright
RUN apk add --no-cache \
chromium \
nss \
freetype \
freetype-dev \
harfbuzz \
ca-certificates \
ttf-freefont
# Tell Playwright to use the installed Chromium
ENV PLAYWRIGHT_BROWSERS_PATH=/usr/bin
ENV PLAYWRIGHT_CHROMIUM_EXECUTABLE_PATH=/usr/bin/chromium-browser
WORKDIR /app
# Copy built application