fix: added yt-dlp to docker container

This commit is contained in:
moonleay 2024-04-04 09:21:25 +02:00
parent cd879e8af9
commit f1b0e1e363
Signed by: moonleay
GPG key ID: 82667543CCD715FB

View file

@ -4,7 +4,7 @@ WORKDIR /usr/src/app
COPY . . COPY . .
RUN apt-get update RUN apt-get update
RUN apt-get install -y cmake RUN apt-get install -y cmake yt-dlp
RUN cargo build --release RUN cargo build --release
CMD ["/usr/src/app/target/release/rustendo"] CMD ["/usr/src/app/target/release/rustendo"]