Files
docker-stacks/stacks/perilous/Dockerfile
knight 2a1d78fa69
Some checks failed
Deploy Stacks / deploy-prod (push) Failing after 1s
Deploy Stacks / deploy-dev (push) Has been cancelled
Add fonts to perilous container for favicon rendering
Sharp requires fontconfig and fonts to render SVG text elements.
Added ttf-dejavu for the dynamically generated favicon.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-04 11:41:01 -05:00

8 lines
203 B
Docker

FROM node:18-alpine
RUN apk add --no-cache python3 make g++ vips-dev fontconfig ttf-dejavu
WORKDIR /usr/src/app
COPY content/package.json ./
RUN npm install
EXPOSE 3000
CMD ["node", "content/server.js"]