mirror of
https://github.com/informaticker/discord-jellyfin-bot.git
synced 2024-11-23 18:21:55 +01:00
12 lines
171 B
Docker
12 lines
171 B
Docker
FROM node:16.17.1-alpine
|
|
RUN apk add ffmpeg
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN yarn install --immutable
|
|
RUN yarn build
|
|
|
|
RUN ls -lha
|
|
RUN ls dist -lha
|
|
|
|
CMD ["yarn", "start:prod"] |