From f1b0e1e3634bc10dca1517050cb0ebbd148bf713 Mon Sep 17 00:00:00 2001 From: moonleay Date: Thu, 4 Apr 2024 09:21:25 +0200 Subject: [PATCH] fix: added yt-dlp to docker container --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b48cfa6..b94baf4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /usr/src/app COPY . . RUN apt-get update -RUN apt-get install -y cmake +RUN apt-get install -y cmake yt-dlp RUN cargo build --release CMD ["/usr/src/app/target/release/rustendo"] \ No newline at end of file