Files
yt-dlp-webui/Dockerfile
marcobaobao ab64a5370a Monthly update
Switch from debian to apline linux based container.
Cut down final image size by ~1GB
2022-03-03 20:22:49 +01:00

20 lines
526 B
Docker

FROM node:16-alpine3.15
RUN mkdir -p /usr/src/yt-dlp-webui/download
VOLUME /usr/src/yt-dlp-webui/downloads
WORKDIR /usr/src/yt-dlp-webui
COPY package*.json ./
# install core dependencies
RUN apk update
RUN apk add curl wget psmisc python3 ffmpeg
COPY . .
RUN chmod +x ./fetch-yt-dlp.sh
# install node dependencies
RUN npm install
RUN npm run build-all
# cleanup
RUN npm remove parcel react react-dom react-bootstrap react-bootstrap-icons
RUN rm -rf .parcel-cache
# expose and run
EXPOSE 3022
CMD [ "node" , "./dist/main.js" ]