7 lines
226 B
Docker
7 lines
226 B
Docker
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
|
|
CMD ["python", "-u", "app.py"] |