16 lines
485 B
Plaintext
16 lines
485 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
|
|
RUN pip install en_core_web_sm-3.8.0.tar.gz
|
|
|
|
COPY launch_kokoro.sh /workspace/
|
|
ENTRYPOINT ["/bin/bash", "launch_kokoro.sh"]
|
|
|