Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -15,9 +15,9 @@ RUN apt-get update && apt-get install -y \
|
|
| 15 |
&& rm -rf /var/lib/apt/lists/*
|
| 16 |
|
| 17 |
# Install AVX2-optimized llama-cpp-python wheel (2-3x faster!)
|
| 18 |
-
# Fallback to
|
| 19 |
RUN pip install --no-cache-dir \
|
| 20 |
-
https://huggingface.co/datasets/AIencoder/llama-cpp-wheels/resolve/main/llama_cpp_python-0.3.16-cp311-cp311-manylinux_2_31_x86_64.whl \
|
| 21 |
|| pip install --no-cache-dir llama-cpp-python
|
| 22 |
|
| 23 |
# Install Python dependencies
|
|
|
|
| 15 |
&& rm -rf /var/lib/apt/lists/*
|
| 16 |
|
| 17 |
# Install AVX2-optimized llama-cpp-python wheel (2-3x faster!)
|
| 18 |
+
# Fallback to PyPI if wheel fails
|
| 19 |
RUN pip install --no-cache-dir \
|
| 20 |
+
https://huggingface.co/datasets/AIencoder/llama-cpp-wheels/resolve/main/llama_cpp_python-0.3.16%2Bavx2-cp311-cp311-manylinux_2_31_x86_64.whl \
|
| 21 |
|| pip install --no-cache-dir llama-cpp-python
|
| 22 |
|
| 23 |
# Install Python dependencies
|