Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -43,6 +43,9 @@ RUN . /app/venv/bin/activate && pip install -r requirements.txt --timeout=300
|
|
43 |
# Explicitly install the TTS package itself in editable mode
|
44 |
RUN . /app/venv/bin/activate && pip install -e . --timeout=300
|
45 |
|
|
|
|
|
|
|
46 |
# Try installing a specific version of librosa
|
47 |
RUN . /app/venv/bin/activate && pip install librosa==0.9.1 --timeout=300
|
48 |
|
|
|
43 |
# Explicitly install the TTS package itself in editable mode
|
44 |
RUN . /app/venv/bin/activate && pip install -e . --timeout=300
|
45 |
|
46 |
+
# Explicitly install numba
|
47 |
+
RUN . /app/venv/bin/activate && pip install numba --timeout=300
|
48 |
+
|
49 |
# Try installing a specific version of librosa
|
50 |
RUN . /app/venv/bin/activate && pip install librosa==0.9.1 --timeout=300
|
51 |
|