6 lines
96 B
Docker
6 lines
96 B
Docker
|
FROM node:18-alpine
|
||
|
COPY . .
|
||
|
RUN apk add ffmpeg
|
||
|
RUN npm install
|
||
|
ENTRYPOINT ["node", "index.js"]
|