Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +5 -2
Dockerfile
CHANGED
|
@@ -14,8 +14,11 @@ RUN pip install --no-cache-dir \
|
|
| 14 |
llama-cpp-python \
|
| 15 |
--extra-index-url https://abetlen.github.io/llama-cpp-python/whl/cpu
|
| 16 |
|
| 17 |
-
#
|
| 18 |
-
RUN pip install --no-cache-dir
|
|
|
|
|
|
|
|
|
|
| 19 |
|
| 20 |
COPY app.py .
|
| 21 |
|
|
|
|
| 14 |
llama-cpp-python \
|
| 15 |
--extra-index-url https://abetlen.github.io/llama-cpp-python/whl/cpu
|
| 16 |
|
| 17 |
+
# Added llama-cpp-python so the app can find it
|
| 18 |
+
RUN pip install --no-cache-dir \
|
| 19 |
+
llama-cpp-python \
|
| 20 |
+
fastapi uvicorn huggingface_hub pydantic \
|
| 21 |
+
--extra-index-url https://abetlen.github.io/llama-cpp-python/whl/cpu
|
| 22 |
|
| 23 |
COPY app.py .
|
| 24 |
|