2024-10-21 21:36:25 +00:00
|
|
|
FROM python:3.12
|
2022-12-12 12:01:52 +00:00
|
|
|
WORKDIR /umi
|
2023-01-11 11:44:04 +00:00
|
|
|
COPY "requirements.txt" .
|
2024-10-21 21:36:25 +00:00
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get install -y yt-dlp ffmpeg aria2 rtmpdump libopus0
|
2024-05-10 18:54:39 +00:00
|
|
|
RUN pip install -r requirements.txt --break-system-packages
|
2022-12-12 12:01:52 +00:00
|
|
|
CMD ["python", "-u", "app.py"]
|