umi/Dockerfile
a 8bc6cb59c4 Change to using python image instead of archlinux
This should reduce image sizes quite a bit?
2024-05-10 18:54:39 +00:00

8 lines
228 B
Docker

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"]