moustafa1-1 commited on
Commit
6d94fc2
·
verified ·
1 Parent(s): 22150b2

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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