upgrade pip before installing deps in Docker build

Fixes hash mismatch when pip resolves Qwen3-TTS transitive deps.

Closes #286
This commit is contained in:
Jamie Pine
2026-03-16 23:13:50 -07:00
parent 606da1c894
commit 01800f196f
+2
View File
@@ -31,6 +31,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
&& rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache-dir --upgrade pip
COPY backend/requirements.txt .
RUN pip install --no-cache-dir --prefix=/install -r requirements.txt
RUN pip install --no-cache-dir --prefix=/install \