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