llama.cpp/Dockerfile

10 lines
213 B
Docker
Raw Normal View History

2023-04-12 09:53:39 +00:00
FROM python:3-buster
# We need to set the host to 0.0.0.0 to allow outside access
ENV HOST 0.0.0.0
# Install the package
RUN pip install llama-cpp-python[server]
# Run the server
CMD python3 -m llama_cpp.server