Lightweight node app to use in place of plex to self host your video and movie collections. Running on just under 50MB of ram this is ideal for people looking to host videos on minimal hardware.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
311 B

  1. # jeffery russell 12-19-2020
  2. FROM node:buster-slim
  3. WORKDIR /src/
  4. COPY package.json package.json
  5. RUN ls -la
  6. # installs pandoc
  7. RUN apt-get update && \
  8. apt-get install ffmpeg -y
  9. # installs node dependencies
  10. RUN npm install
  11. # exposes port application runs on
  12. EXPOSE 4000
  13. # launch command
  14. CMD npm start