Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion dockerfiles/Dockerfile.backend
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ FROM node:24-alpine AS runtime
ENV NODE_ENV=production

RUN apk update && apk upgrade
RUN apk add --no-cache python3 make g++ sqlite-dev py3-setuptools
RUN apk add --no-cache python3 make g++ sqlite-dev py3-setuptools \
# Fontconfig + fonts — required by libvips/Sharp for SVG text rendering \
fontconfig ttf-dejavu && \
fc-cache -f



Expand Down
Loading