mirror of
https://github.com/informaticker/discord-jellyfin-bot.git
synced 2024-11-23 18:21:55 +01:00
9 lines
128 B
Docker
9 lines
128 B
Docker
FROM node:12
|
|
|
|
COPY package.json /app
|
|
RUN npm install
|
|
COPY . /app
|
|
RUN npm run postinstall
|
|
|
|
CMD node parseENV.js
|
|
CMD npm run start |