umi/Dockerfile

8 lines
228 B
Docker
Raw Normal View History

FROM python:latest
WORKDIR /umi
COPY "requirements.txt" .
RUN apt-get update
RUN apt-get -y install yt-dlp ffmpeg aria2 rtmpdump
RUN pip install -r requirements.txt --break-system-packages
COPY . .
CMD ["python", "-u", "app.py"]