add services/worker/Dockerfile
This commit is contained in:
parent
a14920cda8
commit
167bf25443
1 changed files with 7 additions and 0 deletions
7
services/worker/Dockerfile
Normal file
7
services/worker/Dockerfile
Normal 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"]
|
||||||
Loading…
Reference in a new issue