10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08f2bb3 commit f7f4fa8Copy full SHA for f7f4fa8
docker/simple/Dockerfile
@@ -23,7 +23,9 @@ COPY . /app
23
24
RUN python3 -m pip install --upgrade pip
25
26
-RUN make deps && make build && make clean
+RUN python3 -m pip install --upgrade pip pytest cmake scikit-build setuptools fastapi uvicorn sse-starlette pydantic-settings starlette-context
27
+
28
+RUN pip install llama-cpp-python --verbose;
29
30
# Set environment variable for the host
31
ENV HOST=0.0.0.0
@@ -33,4 +35,4 @@ ENV PORT=8000
33
35
EXPOSE 8000
34
36
37
# Run the server start script
-CMD ["/bin/sh", "/app/docker/simple/run.sh"]
38
+CMD ["/bin/sh", "/app/run.sh"]
0 commit comments