Spaces:
Sleeping
Sleeping
Updated Dockerfile for Hugging Face Spaces deployment
Browse files- 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 |
|