hypeconqueror1 commited on
Commit
b58ef5f
·
verified ·
1 Parent(s): 68df875

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -8,7 +8,7 @@ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
  RUN pip install uvicorn
9
 
10
  COPY ./llama-2-7b-chat.Q5_K_M.gguf /code/llama-2-7b-chat.Q5_K_M.gguf
11
- COPY ./app.py /code/app.py
12
  COPY ./LoadLLM.py /code/LoadLLM.py
13
 
14
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
8
  RUN pip install uvicorn
9
 
10
  COPY ./llama-2-7b-chat.Q5_K_M.gguf /code/llama-2-7b-chat.Q5_K_M.gguf
11
+ COPY ./main.py /code/main.py
12
  COPY ./LoadLLM.py /code/LoadLLM.py
13
 
14
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]