Skip to content

Commit 60151da

Browse files
author
ochafik
committed
Use ccache in Docker CUDA build
1 parent e3cf4dc commit 60151da

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.devops/cuda.Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,14 @@ FROM ${BASE_CUDA_DEV_CONTAINER} AS build
1212
ARG CUDA_DOCKER_ARCH=default
1313

1414
RUN apt-get update && \
15-
apt-get install -y build-essential cmake python3 python3-pip git libcurl4-openssl-dev libgomp1
15+
apt-get install -y build-essential cmake python3 python3-pip git libcurl4-openssl-dev libgomp1 ccache
1616

1717
WORKDIR /app
1818

1919
COPY . .
2020

21-
RUN if [ "${CUDA_DOCKER_ARCH}" != "default" ]; then \
21+
RUN --mount=type=cache,target=/root/.ccache \
22+
if [ "${CUDA_DOCKER_ARCH}" != "default" ]; then \
2223
export CMAKE_ARGS="-DCMAKE_CUDA_ARCHITECTURES=${CUDA_DOCKER_ARCH}"; \
2324
fi && \
2425
cmake -B build -DGGML_NATIVE=OFF -DGGML_CUDA=ON -DLLAMA_CURL=ON ${CMAKE_ARGS} -DCMAKE_EXE_LINKER_FLAGS=-Wl,--allow-shlib-undefined . && \

0 commit comments

Comments
 (0)