Add missing opus dependency

This commit is contained in:
a 2024-05-13 04:54:49 +00:00
parent 48259cf5ae
commit 92766b83ff

View file

@ -2,7 +2,7 @@ FROM python:alpine
WORKDIR /umi WORKDIR /umi
COPY "requirements.txt" . COPY "requirements.txt" .
RUN apk update RUN apk update
RUN apk add yt-dlp ffmpeg aria2 rtmpdump RUN apk add yt-dlp ffmpeg aria2 rtmpdump opus
RUN pip install -r requirements.txt --break-system-packages RUN pip install -r requirements.txt --break-system-packages
COPY . . COPY . .
CMD ["python", "-u", "app.py"] CMD ["python", "-u", "app.py"]