mirror of
https://github.com/informaticker/discord-jellyfin-bot.git
synced 2024-11-23 10:11:56 +01:00
8 lines
120 B
Docker
8 lines
120 B
Docker
FROM node:16.17.1-alpine
|
|
RUN apk add ffmpeg
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN yarn install --production
|
|
|
|
CMD yarn start:prod |