chore(Dockerfile): add ffmpeg, espeak-ng, and opusfile dependencies for enhanced media processing capabilities

This commit is contained in:
2026-01-01 17:59:01 -06:00
parent 0f9e1a7ee7
commit a526e88385

View File

@@ -28,7 +28,8 @@ WORKDIR /app
# Install Python deps
COPY ./requirements.txt .
RUN apk add --no-cache --virtual .build-deps \
RUN apk add --no-cache ffmpeg espeak-ng opusfile && \
apk add --no-cache --virtual .build-deps \
gcc \
musl-dev \
linux-headers \