Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -468,8 +468,15 @@ ENV UV_LINK_MODE=copy

RUN echo 'tzdata tzdata/Areas select America' | debconf-set-selections \
&& echo 'tzdata tzdata/Zones/America select Los_Angeles' | debconf-set-selections \
&& CUDA_VERSION_DASH=$(echo $CUDA_VERSION | cut -d. -f1,2 | tr '.' '-') \
&& apt-get update -y \
&& apt-get install -y git
&& apt-get install -y git \
cuda-nvrtc-dev-${CUDA_VERSION_DASH} \
libcublas-dev-${CUDA_VERSION_DASH} \
libcurand-dev-${CUDA_VERSION_DASH} \
libcusolver-dev-${CUDA_VERSION_DASH} \
libcusparse-dev-${CUDA_VERSION_DASH} && \
rm -rf /var/lib/apt/lists/*

# install development dependencies (for testing)
RUN --mount=type=cache,target=/root/.cache/uv \
Expand Down