Files

18 lines
451 B
Plaintext
Raw Permalink Normal View History

2025-09-15 18:06:51 +08:00
FROM corex:4.3.0
2025-09-10 10:56:53 +08:00
WORKDIR /workspace
RUN apt-get update && \
apt-get install -y ffmpeg libsox-dev redis && \
rm -rf /var/lib/apt/lists/*
COPY wav /workspace/wav
COPY GPT-SoVITS /workspace/GPT-SoVITS
COPY constraints_gsv.txt /workspace/
RUN pip install -r GPT-SoVITS/extra-req.txt --no-deps \
&& pip install -r GPT-SoVITS/requirements.txt -c constraints_gsv.txt
2025-09-10 11:06:39 +08:00
COPY launch_gsv.sh /workspace/
ENTRYPOINT ["/bin/bash", "launch_gsv.sh"]