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.
 
 
 
 

27 lines
520 B

# jeffery russell 12-19-2020
FROM node:buster-slim
WORKDIR /src/
COPY package.json package.json
RUN ls -la
# installs ffmpeg and gifski v 1.3.3
RUN apt-get update && \
apt-get install ffmpeg -y && \
apt-get install wget -y && \
cd /root && \
wget https://github.com/jrtechs/static-storage/raw/master/gifski.deb && \
dpkg -i /root/gifski.deb && \
rm /root/gifski.deb
# installs node dependencies
RUN npm install
# exposes port application runs on
EXPOSE 4000
# launch command
CMD npm start