diff --git a/docker/simple/Dockerfile b/docker/simple/Dockerfile index 97a6c19df..2838fd1ff 100644 --- a/docker/simple/Dockerfile +++ b/docker/simple/Dockerfile @@ -23,7 +23,9 @@ COPY . /app RUN python3 -m pip install --upgrade pip -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 + +RUN pip install llama-cpp-python --verbose; # Set environment variable for the host ENV HOST=0.0.0.0 @@ -33,4 +35,4 @@ ENV PORT=8000 EXPOSE 8000 # Run the server start script -CMD ["/bin/sh", "/app/docker/simple/run.sh"] +CMD ["/bin/sh", "/app/run.sh"]