Spaces:
Runtime error
Runtime error
try fix pip install
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
@@ -4,6 +4,10 @@ WORKDIR /work
|
|
4 |
|
5 |
RUN git clone https://github.com/svc-develop-team/so-vits-svc.git && cd so-vits-svc
|
6 |
|
|
|
|
|
|
|
|
|
7 |
RUN pip install --no-cache-dir --upgrade -r /work/so-vits-svc/requirements.txt
|
8 |
|
9 |
ENV SERVER_NAME="0.0.0.0"
|
|
|
4 |
|
5 |
RUN git clone https://github.com/svc-develop-team/so-vits-svc.git && cd so-vits-svc
|
6 |
|
7 |
+
RUN ["apt", "update"]
|
8 |
+
RUN ["apt", "install", "-y", "build-essential"]
|
9 |
+
RUN ["pip", "install", "-U", "pip", "setuptools", "wheel"]
|
10 |
+
|
11 |
RUN pip install --no-cache-dir --upgrade -r /work/so-vits-svc/requirements.txt
|
12 |
|
13 |
ENV SERVER_NAME="0.0.0.0"
|