add services/worker/Dockerfile

This commit is contained in:
Zac Gaetano 2026-04-07 21:58:18 -04:00
parent a14920cda8
commit 167bf25443

View file

@ -0,0 +1,7 @@
FROM node:20-alpine
RUN apk add --no-cache ffmpeg
WORKDIR /app
COPY package*.json ./
RUN npm install --omit=dev
COPY . .
CMD ["node", "src/index.js"]