yalsaffar commited on
Commit
c3ea709
·
1 Parent(s): 81b0f36

Updated Dockerfile for Hugging Face Spaces deployment

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -92,6 +92,9 @@ RUN git clone https://github.com/coqui-ai/TTS/ && \
92
  cd TTS && \
93
  make install
94
 
 
 
 
95
  # Install Node.js dependencies
96
  RUN cd /app/app && npm install
97
 
 
92
  cd TTS && \
93
  make install
94
 
95
+ # Ensure the correct version of librosa is installed
96
+ RUN pip install librosa==0.9.2
97
+
98
  # Install Node.js dependencies
99
  RUN cd /app/app && npm install
100