From e66638f414b6c625e8bfe26ddaa0ef5806668ad9 Mon Sep 17 00:00:00 2001 From: a Date: Tue, 22 Oct 2024 13:20:36 +0000 Subject: [PATCH] Fix: potential conflict between system yt-dlp and pip yt-dlp --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 79ccfac..7424658 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,6 @@ FROM python:3.12 WORKDIR /umi COPY "requirements.txt" . RUN apt-get update -RUN apt-get install -y yt-dlp ffmpeg aria2 rtmpdump libopus0 -RUN pip install -r requirements.txt --break-system-packages +RUN apt-get install -y ffmpeg aria2 rtmpdump libopus0 +RUN pip install -r requirements.txt --root-user-action CMD ["python", "-u", "app.py"] \ No newline at end of file