Spaces:
Runtime error
Runtime error
add pip install bitsandbytes from whl to dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
|
@@ -17,6 +17,8 @@ WORKDIR /app
|
|
| 17 |
# Copy requirements first for caching
|
| 18 |
COPY requirements.txt .
|
| 19 |
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
|
|
|
| 20 |
|
| 21 |
# Copy project files
|
| 22 |
COPY . .
|
|
|
|
| 17 |
# Copy requirements first for caching
|
| 18 |
COPY requirements.txt .
|
| 19 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 20 |
+
RUN pip install --force-reinstall 'https://github.com/bitsandbytes-foundation/bitsandbytes/releases/download/continuous-release_multi-backend-refactor/bitsandbytes-0.44.1.dev0-py3-none-manylinux_2_24_x86_64.whl'
|
| 21 |
+
|
| 22 |
|
| 23 |
# Copy project files
|
| 24 |
COPY . .
|