mirror of
https://github.com/informaticker/discord-jellyfin-bot.git
synced 2024-11-24 18:41:57 +01:00
9 lines
114 B
Docker
9 lines
114 B
Docker
FROM node:16.13.1-alpine3.12
|
|
RUN apk add ffmpeg
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["yarn", "start:prod"] |