diff --git a/services/worker/Dockerfile b/services/worker/Dockerfile new file mode 100644 index 0000000..c8c75e7 --- /dev/null +++ b/services/worker/Dockerfile @@ -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"]