Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -8,6 +8,9 @@ RUN apt-get update && apt-get install -y \
|
|
| 8 |
libopenblas-dev \
|
| 9 |
liblapack-dev
|
| 10 |
|
|
|
|
|
|
|
|
|
|
| 11 |
# Python dependencies
|
| 12 |
COPY requirements.txt .
|
| 13 |
RUN pip install --no-cache-dir -U pip && \
|
|
|
|
| 8 |
libopenblas-dev \
|
| 9 |
liblapack-dev
|
| 10 |
|
| 11 |
+
# Install CUDA-compatible version of ctransformers
|
| 12 |
+
RUN pip install --no-cache-dir ctransformers --no-binary ctransformers
|
| 13 |
+
|
| 14 |
# Python dependencies
|
| 15 |
COPY requirements.txt .
|
| 16 |
RUN pip install --no-cache-dir -U pip && \
|