mirror of
https://github.com/informaticker/discord-jellyfin-bot.git
synced 2024-11-23 18:21:55 +01:00
10 lines
149 B
Docker
10 lines
149 B
Docker
FROM node:12.18.3-alpine
|
|
RUN apk add ffmpeg
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN npm install
|
|
RUN npm run postinstall
|
|
|
|
CMD node parseENV.js
|
|
CMD npm run start |