Pre-download the spacy model that kokoro needs at runtime

This commit is contained in:
2026-04-08 11:43:26 -04:00
parent d509f92a9d
commit 680c5b04cc
+3
View File
@@ -35,6 +35,9 @@ RUN python3.11 -m pip install --no-cache-dir \
COPY requirements.txt . COPY requirements.txt .
RUN python3.11 -m pip install --no-cache-dir -r requirements.txt RUN python3.11 -m pip install --no-cache-dir -r requirements.txt
# Pre-download the spacy model that kokoro needs at runtime
RUN python3.11 -m spacy download en_core_web_sm
COPY . . COPY . .
EXPOSE 8000 EXPOSE 8000