From 2320b4253dc295bab8170dc6a856eb9b059ebf25 Mon Sep 17 00:00:00 2001 From: Ivan Date: Sun, 19 Apr 2026 11:38:14 -0500 Subject: [PATCH] chore(docker): remove ffmpeg from Alpine package installation --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d602d56..dba6972 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,7 +57,7 @@ RUN pip install --no-cache-dir . && \ FROM ${PYTHON_IMAGE}@${PYTHON_HASH} RUN apk upgrade --no-cache && \ - apk add --no-cache ffmpeg opusfile libffi espeak-ng su-exec && \ + apk add --no-cache opusfile libffi espeak-ng su-exec && \ python -m pip install --no-cache-dir --upgrade "pip>=26.0" "setuptools" "jaraco.context>=6.1.0" && \ rm -rf /root/.cache/pip && \ addgroup -g 1000 meshchat && adduser -u 1000 -G meshchat -S meshchat && \