llama-server-cuda.Dockerfile 1.48 KB
Newer Older
xuxzh1's avatar
init  
xuxzh1 committed
1
2
ARG UBUNTU_VERSION=22.04
# This needs to generally match the container host's environment.
xuxzh1's avatar
update  
xuxzh1 committed
3
ARG CUDA_VERSION=12.6.0
xuxzh1's avatar
init  
xuxzh1 committed
4
5
6
7
8
9
10
# Target the CUDA build image
ARG BASE_CUDA_DEV_CONTAINER=nvidia/cuda:${CUDA_VERSION}-devel-ubuntu${UBUNTU_VERSION}
# Target the CUDA runtime image
ARG BASE_CUDA_RUN_CONTAINER=nvidia/cuda:${CUDA_VERSION}-runtime-ubuntu${UBUNTU_VERSION}

FROM ${BASE_CUDA_DEV_CONTAINER} AS build

xuxzh1's avatar
update  
xuxzh1 committed
11
12
# CUDA architecture to build for (defaults to all supported archs)
ARG CUDA_DOCKER_ARCH=default
xuxzh1's avatar
init  
xuxzh1 committed
13
14

RUN apt-get update && \
xuxzh1's avatar
update  
xuxzh1 committed
15
    apt-get install -y build-essential git cmake libcurl4-openssl-dev
xuxzh1's avatar
init  
xuxzh1 committed
16
17
18
19
20

WORKDIR /app

COPY . .

xuxzh1's avatar
update  
xuxzh1 committed
21
22
23
24
25
26
27
28
# Use the default CUDA archs if not specified
RUN if [ "${CUDA_DOCKER_ARCH}" != "default" ]; then \
        export CMAKE_ARGS="-DCMAKE_CUDA_ARCHITECTURES=${CUDA_DOCKER_ARCH}"; \
    fi && \
    cmake -B build -DGGML_NATIVE=OFF -DGGML_CUDA=ON -DLLAMA_CURL=ON ${CMAKE_ARGS} -DCMAKE_EXE_LINKER_FLAGS=-Wl,--allow-shlib-undefined . && \
    cmake --build build --config Release --target llama-server -j$(nproc) && \
    mkdir -p /app/lib && \
    find build -name "*.so" -exec cp {} /app/lib \;
xuxzh1's avatar
init  
xuxzh1 committed
29
30
31
32
33
34

FROM ${BASE_CUDA_RUN_CONTAINER} AS runtime

RUN apt-get update && \
    apt-get install -y libcurl4-openssl-dev libgomp1 curl

xuxzh1's avatar
update  
xuxzh1 committed
35
36
37
38
39
COPY --from=build /app/lib/ /
COPY --from=build /app/build/bin/llama-server /llama-server

# Must be set to 0.0.0.0 so it can listen to requests from host machine
ENV LLAMA_ARG_HOST=0.0.0.0
xuxzh1's avatar
init  
xuxzh1 committed
40
41
42
43

HEALTHCHECK CMD [ "curl", "-f", "http://localhost:8080/health" ]

ENTRYPOINT [ "/llama-server" ]