Files
tardis-bot/Dockerfile
2022-11-30 22:39:08 +00:00

6 lines
96 B
Docker

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