Alex0007 commited on
Commit
72f722e
·
verified ·
1 Parent(s): af84458

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -4
Dockerfile CHANGED
@@ -18,8 +18,8 @@ RUN apt-get update && apt-get upgrade -y \
18
  WORKDIR /app
19
 
20
 
21
- COPY ./requirements.txt /app/requirements.txt
22
- RUN pip install --upgrade pip && pip install --no-cache-dir --upgrade -r /app/requirements.txt
23
 
24
 
25
  # Cloning the llama.cpp repository
@@ -43,5 +43,5 @@ RUN chmod -R 777 /app/llama.cpp
43
  EXPOSE 8080
44
 
45
  # Adjust the CMD to use the absolute path of the server executable
46
- # CMD ["/app/llama.cpp/server", "-m", "/app/llama.cpp/models/7B/qwen7b-q4_0.gguf", "-c", "16000"]
47
- CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
 
18
  WORKDIR /app
19
 
20
 
21
+ # COPY ./requirements.txt /app/requirements.txt
22
+ # RUN pip install --upgrade pip && pip install --no-cache-dir --upgrade -r /app/requirements.txt
23
 
24
 
25
  # Cloning the llama.cpp repository
 
43
  EXPOSE 8080
44
 
45
  # Adjust the CMD to use the absolute path of the server executable
46
+ CMD ["/app/llama.cpp/server", "-m", "/app/llama.cpp/models/7B/qwen7b-q4_0.gguf", "-c", "16000", "--host", "0.0.0.0", "--port", "8000"]
47
+ # CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]