chore(docker): remove ffmpeg from Alpine package installation

This commit is contained in:
Ivan
2026-04-19 11:38:14 -05:00
parent 3d0f9b35ad
commit 2320b4253d
+1 -1
View File
@@ -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 && \