llama.cpp/Dockerfile.cuda
Marcel Coetzee 6c57d38552 Decrement CUDA version and bump Ubuntu
Signed-off-by: Marcel Coetzee <marcel@mooncoon.com>
2023-05-18 16:02:42 +02:00

15 lines
410 B
Docker

FROM nvidia/cuda:12.0.1-devel-ubuntu22.04
# We need to set the host to 0.0.0.0 to allow outside access
ENV HOST 0.0.0.0
COPY . .
# Install the package
RUN apt update && apt install -y python3 python3-pip
RUN python3 -m pip install --upgrade pip pytest cmake scikit-build setuptools fastapi uvicorn sse-starlette
RUN LLAMA_CUBLAS=1 python3 setup.py develop
# Run the server
CMD python3 -m llama_cpp.server