Fix: potential conflict between system yt-dlp and pip yt-dlp
This commit is contained in:
parent
299a18cb0d
commit
e66638f414
|
@ -2,6 +2,6 @@ FROM python:3.12
|
||||||
WORKDIR /umi
|
WORKDIR /umi
|
||||||
COPY "requirements.txt" .
|
COPY "requirements.txt" .
|
||||||
RUN apt-get update
|
RUN apt-get update
|
||||||
RUN apt-get install -y yt-dlp ffmpeg aria2 rtmpdump libopus0
|
RUN apt-get install -y ffmpeg aria2 rtmpdump libopus0
|
||||||
RUN pip install -r requirements.txt --break-system-packages
|
RUN pip install -r requirements.txt --root-user-action
|
||||||
CMD ["python", "-u", "app.py"]
|
CMD ["python", "-u", "app.py"]
|
Loading…
Reference in a new issue