Justin commited on
Commit
a5cae02
1 Parent(s): 3b0b553

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -37,5 +37,7 @@ RUN git clone https://huggingface.co/voices/VCTK_British_English_Females model
37
  # Copy the current directory contents into the container at $HOME/app, setting the owner to the user
38
  COPY --chown=user . $HOME/app
39
 
 
 
40
  # Set the command to run the server
41
  CMD ["python", "TTS/server/server.py", "--model_path", "model/checkpoint_85000.pth", "--config_path", "model/config.json", "--port", "7860"]
 
37
  # Copy the current directory contents into the container at $HOME/app, setting the owner to the user
38
  COPY --chown=user . $HOME/app
39
 
40
+ RUN sed -i 's/supplemental\//model\/supplemental\//g' model/config.json
41
+
42
  # Set the command to run the server
43
  CMD ["python", "TTS/server/server.py", "--model_path", "model/checkpoint_85000.pth", "--config_path", "model/config.json", "--port", "7860"]