Merge branch 'main' of github.com:abetlen/llama_cpp_python into main
This commit is contained in:
commit
5f583b0179
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
FROM python:3-bullseye
|
FROM python:3-slim-bullseye
|
||||||
|
|
||||||
# We need to set the host to 0.0.0.0 to allow outside access
|
# We need to set the host to 0.0.0.0 to allow outside access
|
||||||
ENV HOST 0.0.0.0
|
ENV HOST 0.0.0.0
|
||||||
|
@ -6,10 +6,10 @@ ENV HOST 0.0.0.0
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
# Install the package
|
# Install the package
|
||||||
RUN apt update && apt install -y libopenblas-dev
|
RUN apt update && apt install -y libopenblas-dev ninja-build build-essential
|
||||||
RUN python -m pip install --upgrade pip pytest cmake scikit-build setuptools fastapi uvicorn sse-starlette
|
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 LLAMA_OPENBLAS=1 python3 setup.py develop
|
||||||
|
|
||||||
# Run the server
|
# Run the server
|
||||||
CMD python3 -m llama_cpp.server
|
CMD python3 -m llama_cpp.server
|
||||||
|
|
Loading…
Reference in a new issue