Basic dockerfile

master
Talon 2022-11-30 22:39:08 +00:00
parent 1f06ae0301
commit 9d25ed6e7b
1 changed files with 5 additions and 0 deletions

5
Dockerfile 100644
View File

@ -0,0 +1,5 @@
FROM node:18-alpine
COPY . .
RUN apk add ffmpeg
RUN npm install
ENTRYPOINT ["node", "index.js"]