44816571b6
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
11 lines
259 B
Docker
11 lines
259 B
Docker
FROM node:22-alpine
|
|
# ffmpeg + a TTF for the Video Maker's end-card drawtext (small: ~40MB total)
|
|
RUN apk add --no-cache ffmpeg ttf-dejavu
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN mkdir -p /app/data
|
|
ENV NODE_ENV=production
|
|
ENV PORT=3000
|
|
EXPOSE 3000
|
|
CMD ["node","server.js"]
|