tardis-bot/Dockerfile

6 lines
96 B
Docker
Raw Normal View History

2022-11-30 22:39:08 +00:00
FROM node:18-alpine
COPY . .
RUN apk add ffmpeg
RUN npm install
ENTRYPOINT ["node", "index.js"]