merge code repo for f5 and gpt and kokoro

This commit is contained in:
zhousha
2025-08-12 14:15:41 +08:00
commit 05a77ed283
16 changed files with 574 additions and 0 deletions

9
Dockerfile_kokoro Normal file
View File

@@ -0,0 +1,9 @@
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
ENTRYPOINT ["/bin/bash", "launch_kokoro.sh"]