From 81631afc48990135c20ece1d52872a7de3033715 Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Tue, 2 May 2023 00:55:51 -0400 Subject: [PATCH] Install from local directory --- Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ade4ac9..14fb3be 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,13 @@ FROM python:3-bullseye # We need to set the host to 0.0.0.0 to allow outside access ENV HOST 0.0.0.0 +COPY . . + # Install the package -RUN apt update && apt install -y libopenblas-dev && LLAMA_OPENBLAS=1 pip install llama-cpp-python[server] +RUN apt update && apt install -y libopenblas-dev +RUN python -m pip install --upgrade pip pytest cmake scikit-build setuptools fastapi uvicorn sse-starlette + +RUN LLAMA_OPENBLAS=1 python3 setup.py develop # Run the server CMD python3 -m llama_cpp.server \ No newline at end of file