2023-04-24 09:54:38 +02:00
|
|
|
FROM python:3-bullseye
|
2023-04-12 11:53:39 +02:00
|
|
|
|
|
|
|
# We need to set the host to 0.0.0.0 to allow outside access
|
|
|
|
ENV HOST 0.0.0.0
|
|
|
|
|
|
|
|
# Install the package
|
2023-04-15 20:24:46 +02:00
|
|
|
RUN apt update && apt install -y libopenblas-dev && LLAMA_OPENBLAS=1 pip install llama-cpp-python[server]
|
2023-04-12 11:53:39 +02:00
|
|
|
|
|
|
|
# Run the server
|
|
|
|
CMD python3 -m llama_cpp.server
|