Add yt-dlp to dockerfile

This commit is contained in:
Bingus_Violet 2024-01-14 13:42:05 -06:00
parent 06b1a89b2c
commit b1f60bae07

View file

@ -1,5 +1,5 @@
FROM node:20 FROM node:20
RUN apt update && apt install ffmpeg -y RUN sudo add-apt-repository ppa:tomtomtom/yt-dlp && apt update && apt install yt-dlp -y
WORKDIR /usr/src/app WORKDIR /usr/src/app