discord-jellyfin-bot/Dockerfile

12 lines
171 B
Docker
Raw Normal View History

2022-12-19 21:21:04 +01:00
FROM node:16.17.1-alpine
2020-09-18 02:40:02 +02:00
RUN apk add ffmpeg
2020-09-08 14:02:00 +02:00
COPY . /app
2020-09-18 02:40:02 +02:00
WORKDIR /app
2022-12-21 20:13:55 +01:00
RUN yarn install --immutable
RUN yarn build
2020-09-08 14:02:00 +02:00
2022-12-21 20:13:55 +01:00
RUN ls -lha
RUN ls dist -lha
CMD ["yarn", "start:prod"]