mirror of
https://github.com/sakaljurgis/kodi-api-server.git
synced 2026-07-08 20:37:41 +00:00
16 lines
201 B
Docker
16 lines
201 B
Docker
FROM node:18
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install ffmpeg -y
|
|
|
|
WORKDIR /srv/app
|
|
COPY ./ /srv/app
|
|
RUN npm install
|
|
RUN npm run typeorm:run-migrations
|
|
|
|
EXPOSE $PORT
|
|
|
|
# start
|
|
CMD ["npm", "run", "start"]
|
|
|