mirror of
https://github.com/informaticker/discord-jellyfin-bot.git
synced 2024-11-30 21:21:56 +01:00
8 lines
102 B
Docker
8 lines
102 B
Docker
FROM node:16.13.1-alpine3.12
|
|
RUN apk add ffmpeg
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
CMD ["yarn", "start:prod"]
|