discord-jellyfin-bot/Dockerfile

9 lines
128 B
Docker
Raw Normal View History

2020-09-08 14:02:00 +02:00
FROM node:12
COPY package.json /app
RUN npm install
COPY . /app
RUN npm run postinstall
2020-09-08 14:05:44 +02:00
CMD node parseENV.js
2020-09-08 14:02:00 +02:00
CMD npm run start