File size: 402 Bytes
b9f86ec
 
 
 
 
 
37a140b
 
 
 
ea46fe8
b9f86ec
2038c2a
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM python:3.9

WORKDIR /work

RUN git clone https://github.com/svc-develop-team/so-vits-svc.git && cd so-vits-svc

RUN ["apt", "update"]
RUN ["apt", "install", "-y", "build-essential"]
RUN ["pip", "install", "-U", "pip", "setuptools", "wheel"]

RUN pip install --no-cache-dir --upgrade -r /work/so-vits-svc/requirements.txt

ENV SERVER_NAME="0.0.0.0"
ENV SERVER_PORT=7860

CMD ["python", "webUI.py"]