From d756e7c0201c4c99addd7f33c9356f4d34d943fc Mon Sep 17 00:00:00 2001 From: user Date: Sat, 21 Feb 2026 21:47:49 +0100 Subject: [PATCH] fix: add opus, ffmpeg, yt-dlp to container image Music playback requires system libraries that were missing from the Alpine-based container. --- Containerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Containerfile b/Containerfile index 00d20c5..12cd5b4 100644 --- a/Containerfile +++ b/Containerfile @@ -1,5 +1,7 @@ FROM python:3.13-alpine +RUN apk add --no-cache opus ffmpeg yt-dlp + WORKDIR /app COPY requirements.txt .