Adi362 commited on
Commit
5fba432
·
verified ·
1 Parent(s): 992fbe7

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -11,9 +11,10 @@ RUN CMAKE_ARGS="-DLLAMA_NATIVE=OFF" \
11
  pip install --no-cache-dir \
12
  fastapi \
13
  uvicorn \
14
- llama-cpp-python==0.2.90
 
15
 
16
  COPY app.py /app/app.py
17
  COPY model.gguf /models/model.gguf
18
 
19
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
11
  pip install --no-cache-dir \
12
  fastapi \
13
  uvicorn \
14
+ llama-cpp-python==0.2.90 \
15
+ httpx
16
 
17
  COPY app.py /app/app.py
18
  COPY model.gguf /models/model.gguf
19
 
20
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]