Spaces:
Running
Running
Update Dockerfile
Browse files- 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 |
-
|
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"]
|