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
|
2024-10-22 13:20:36 +00:00
|
|
|
RUN apt-get install -y ffmpeg aria2 rtmpdump libopus0
|
|
|
|
RUN pip install -r requirements.txt --root-user-action
|
2022-12-12 12:01:52 +00:00
|
|
|
CMD ["python", "-u", "app.py"]
|