discord-jellyfin-bot/Dockerfile

9 lines
166 B
Docker
Raw Normal View History

2020-09-18 02:40:02 +02:00
FROM node:12.18.3-alpine
RUN apk add ffmpeg
2020-09-08 14:02:00 +02:00
COPY . /app
2020-09-18 02:40:02 +02:00
WORKDIR /app
2020-09-21 05:39:22 +02:00
RUN npm install --only=production
2020-09-08 14:02:00 +02:00
RUN npm run postinstall
2020-09-18 03:30:29 +02:00
CMD node parseENV.js && npm run start