moustafa1-1 commited on
Commit
a5d03c4
·
verified ·
1 Parent(s): 39c9b86

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -4
Dockerfile CHANGED
@@ -10,11 +10,8 @@ COPY speaker_reference.wav /app/audio/speaker_reference.wav
10
  RUN pip install -r /app/requirements.txt --no-cache-dir
11
 
12
  RUN chmod -R 755 /root/TTS/
13
- RUN ls -l /root/TTS/server/server.py
14
- RUN ls -l /root/TTS/server/
15
 
16
  EXPOSE 5002
17
  EXPOSE 80
18
 
19
- ENTRYPOINT ["python3"]
20
- CMD ["/root/TTS/server/server.py", "--model_name", "tts_models/multilingual/multi-dataset-xtts_v2", "--port", "5002"]
 
10
  RUN pip install -r /app/requirements.txt --no-cache-dir
11
 
12
  RUN chmod -R 755 /root/TTS/
 
 
13
 
14
  EXPOSE 5002
15
  EXPOSE 80
16
 
17
+ CMD ["/usr/local/bin/python3", "/root/TTS/server/server.py", "--model_name", "tts_models/multilingual/multi-dataset-xtts_v2", "--port", "5002"]