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>
8 lines
203 B
Docker
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"]
|