SarmaHighOnAI commited on
Commit
de19456
·
verified ·
1 Parent(s): c1b648c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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
- # 3. Install the rest of your web tools
18
- RUN pip install --no-cache-dir fastapi uvicorn huggingface_hub pydantic
 
 
 
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