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.

26 lines
520 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 ffmpeg and gifski v 1.3.3
  7. RUN apt-get update && \
  8. apt-get install ffmpeg -y && \
  9. apt-get install wget -y && \
  10. cd /root && \
  11. wget https://github.com/jrtechs/static-storage/raw/master/gifski.deb && \
  12. dpkg -i /root/gifski.deb && \
  13. rm /root/gifski.deb
  14. # installs node dependencies
  15. RUN npm install
  16. # exposes port application runs on
  17. EXPOSE 4000
  18. # launch command
  19. CMD npm start