llama-cli-cuda.Dockerfile 1.24 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
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 ${CMAKE_ARGS} -DCMAKE_EXE_LINKER_FLAGS=-Wl,--allow-shlib-undefined . && \
    cmake --build build --config Release --target llama-cli -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 libgomp1

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

ENTRYPOINT [ "/llama-cli" ]