discord-jellyfin-bot/Dockerfile
2020-09-21 05:39:22 +02:00

9 lines
166 B
Docker

FROM node:12.18.3-alpine
RUN apk add ffmpeg
COPY . /app
WORKDIR /app
RUN npm install --only=production
RUN npm run postinstall
CMD node parseENV.js && npm run start