This commit is contained in:
2025-08-20 17:05:36 +08:00
parent 6ae2fb5868
commit 82140eff2c
259 changed files with 505375 additions and 251 deletions

View File

@@ -1,10 +1,13 @@
FROM corex:3.2.1
WORKDIR /workspace
COPY GPT-SoVITS constraints_gsv.txt gsv_server.py launch_gsv.sh /workspace/
RUN pip install -r GPT-SOVITS/extra-req.txt --no-deps \
&& pip install -r GPT-SoVITS/requirements.txt -c constraints_gsv.txt \
COPY constraints_gsv.txt launch_gsv.sh /workspace/
COPY GPT-SoVITS /workspace/GPT-SoVITS
RUN pip install -r GPT-SoVITS/extra-req.txt --no-deps \
&& pip install -r GPT-SoVITS/requirements.txt -c constraints_gsv.txt \
&& apt update \
&& apt install -y ffmpeg libsox-dev
&& apt install -y ffmpeg libsox-dev redis
RUN pip install redis
COPY wav /workspace/wav
ENTRYPOINT ["/bin/bash", "launch_gsv.sh"]