PorYoung commited on
Commit
d3b7cc4
·
1 Parent(s): 2c6d5f9

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -4
Dockerfile CHANGED
@@ -6,13 +6,13 @@ RUN python3 -m pip install --no-cache-dir --upgrade pip
6
 
7
  WORKDIR /work
8
  COPY . .
9
- RUN cd /work/so-vits-svc/pretrain
10
- RUN wget -c https://github.com/openvpi/vocoders/releases/download/nsf-hifigan-v1/nsf_hifigan_20221211.zip
11
- RUN unzip -q nsf_hifigan_20221211.zip
12
- RUN cd /work/so-vits-svc
13
  RUN pip install --no-cache-dir --upgrade -r /work/so-vits-svc/requirements.txt
14
 
15
  ENV SERVER_NAME="0.0.0.0"
16
  ENV SERVER_PORT=7860
17
 
 
18
  RUN python webUI.py
 
6
 
7
  WORKDIR /work
8
  COPY . .
9
+ RUN cd /work/so-vits-svc/pretrain && \
10
+ wget -c https://github.com/openvpi/vocoders/releases/download/nsf-hifigan-v1/nsf_hifigan_20221211.zip && \
11
+ unzip -q nsf_hifigan_20221211.zip
 
12
  RUN pip install --no-cache-dir --upgrade -r /work/so-vits-svc/requirements.txt
13
 
14
  ENV SERVER_NAME="0.0.0.0"
15
  ENV SERVER_PORT=7860
16
 
17
+ WORKDIR /work/so-vits-svc
18
  RUN python webUI.py