discord-jellyfin-bot/Dockerfile

12 lines
144 B
Docker
Raw Normal View History

FROM node:16.13.1-alpine3.12
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
EXPOSE 3000
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"]