discord-jellyfin-bot/Dockerfile

8 lines
120 B
Docker
Raw Normal View History

2022-12-19 21:21:04 +01:00
FROM node:16.17.1-alpine
2020-09-18 02:40:02 +02:00
RUN apk add ffmpeg
2020-09-08 14:02:00 +02:00
COPY . /app
2020-09-18 02:40:02 +02:00
WORKDIR /app
2022-12-19 21:21:04 +01:00
RUN yarn install --production
2020-09-08 14:02:00 +02:00
2022-12-19 21:21:04 +01:00
CMD yarn start:prod