Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -29,6 +29,9 @@ RUN pip install --no-cache-dir \
|
|
| 29 |
torchaudio==2.1.0 \
|
| 30 |
--index-url https://download.pytorch.org/whl/cpu
|
| 31 |
|
|
|
|
|
|
|
|
|
|
| 32 |
# Install compatible huggingface-hub
|
| 33 |
RUN pip install --no-cache-dir huggingface-hub>=0.19.3
|
| 34 |
|
|
|
|
| 29 |
torchaudio==2.1.0 \
|
| 30 |
--index-url https://download.pytorch.org/whl/cpu
|
| 31 |
|
| 32 |
+
# After PyTorch installation
|
| 33 |
+
RUN pip install --no-cache-dir "numpy<2"
|
| 34 |
+
|
| 35 |
# Install compatible huggingface-hub
|
| 36 |
RUN pip install --no-cache-dir huggingface-hub>=0.19.3
|
| 37 |
|