Basic dockerfile

This commit is contained in:
2022-11-30 22:39:08 +00:00
parent 1f06ae0301
commit 9d25ed6e7b

5
Dockerfile Normal file
View File

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