2025-08-12 14:15:41 +08:00
|
|
|
FROM corex:3.2.1
|
|
|
|
|
|
|
|
|
|
WORKDIR /workspace
|
|
|
|
|
COPY requirements_kokoro.txt constraints_kokoro.txt kokoro_server.py launch_kokoro.sh /workspace/
|
|
|
|
|
RUN pip install -r requirements_kokoro.txt -c constraints_kokoro.txt \
|
|
|
|
|
&& apt update \
|
|
|
|
|
&& apt install -y espeak-ng
|
|
|
|
|
|
2025-08-20 17:52:02 +08:00
|
|
|
COPY ./en_core_web_sm-3.8.0.tar.gz .
|
|
|
|
|
RUN pip install --no-index en_core_web_sm-3.8.0.tar.gz
|
|
|
|
|
|
2025-08-12 14:15:41 +08:00
|
|
|
ENTRYPOINT ["/bin/bash", "launch_kokoro.sh"]
|