discord-jellyfin-bot/Dockerfile
2022-12-19 21:21:04 +01:00

8 lines
120 B
Docker

FROM node:16.17.1-alpine
RUN apk add ffmpeg
COPY . /app
WORKDIR /app
RUN yarn install --production
CMD yarn start:prod