2023-05-04 19:03:19 +00:00
|
|
|
FROM python:3-slim-bullseye
|
2023-04-12 09:53:39 +00:00
|
|
|
|
|
|
|
# We need to set the host to 0.0.0.0 to allow outside access
|
|
|
|
ENV HOST 0.0.0.0
|
|
|
|
|
2023-05-02 04:55:51 +00:00
|
|
|
COPY . .
|
|
|
|
|
2023-04-12 09:53:39 +00:00
|
|
|
# Install the package
|
2023-05-04 19:03:19 +00:00
|
|
|
RUN apt update && apt install -y libopenblas-dev ninja-build build-essential
|
2023-05-02 04:55:51 +00:00
|
|
|
RUN python -m pip install --upgrade pip pytest cmake scikit-build setuptools fastapi uvicorn sse-starlette
|
|
|
|
|
|
|
|
RUN LLAMA_OPENBLAS=1 python3 setup.py develop
|
2023-04-12 09:53:39 +00:00
|
|
|
|
|
|
|
# Run the server
|
2023-05-04 19:03:19 +00:00
|
|
|
CMD python3 -m llama_cpp.server
|