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