PorYoung commited on
Commit
37a140b
1 Parent(s): ea46fe8

try fix pip install

Browse files
Files changed (1) hide show
  1. 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"