discord-jellyfin-bot/DOCKERFILE

8 lines
107 B
Plaintext
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
CMD npm run start