diff --git a/Dockerfile b/Dockerfile index b745602..2628460 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ -FROM python:latest +FROM python:alpine WORKDIR /umi COPY "requirements.txt" . -RUN apt-get update -RUN apt-get -y install yt-dlp ffmpeg aria2 rtmpdump +RUN apk update +RUN apk add yt-dlp ffmpeg aria2 rtmpdump RUN pip install -r requirements.txt --break-system-packages COPY . . CMD ["python", "-u", "app.py"] \ No newline at end of file