Files
enginex-mr_series-tts/mr_v100-kokoro/Dockerfile_kokoro
2025-09-10 10:56:53 +08:00

18 lines
603 B
Plaintext

FROM git.modelhub.org.cn:9443/enginex-iluvatar/mr100_corex:4.3.0
WORKDIR /workspace
RUN apt-get update && \
apt-get install -y espeak-ng && \
rm -rf /var/lib/apt/lists/*
COPY requirements_kokoro.txt constraints_kokoro.txt kokoro_server.py en_core_web_sm-3.8.0.tar.gz /workspace/
RUN pip install -r requirements_kokoro.txt -c constraints_kokoro.txt -i https://nexus.4pd.io/repository/pypi-all/simple
RUN pip install en_core_web_sm-3.8.0.tar.gz
#COPY launch_kokoro.sh /workspace/
#ENTRYPOINT ["/bin/bash", "launch_kokoro.sh"]
COPY launch.sh /workspace/
ENTRYPOINT ["/bin/bash", "launch.sh"]