Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,19 @@

# Sample Dockerfile to install UCX in a Rocky Linux 8 image.
#
# The parameters are:
# - CUDA_VER: 13.0.1 by default
# - UCX_VER, UCX_CUDA_VER, and UCX_ARCH:
# The parameters are:
# - CUDA_VER: 13.0.1 by default - CUDA runtime version installed in the container
# - UCX_VER, UCX_CUDA_VER, and UCX_ARCH:
# Used to pick a package matching a specific UCX version and
# CUDA runtime from the UCX github repo.
# CUDA runtime from the UCX github repo. UCX_CUDA_VER is the CUDA version
# that UCX is built for (can be older than CUDA_VER due to backwards compatibility;
# CUDA 13 UCX builds are not available for Rocky Linux, hence UCX_CUDA_VER=11).
# See: https://github.com/openucx/ucx/releases/
# - ROCKY_VER: Rocky Linux OS version

ARG CUDA_VER=13.0.1
ARG UCX_VER=1.19.1-rc1
ARG UCX_CUDA_VER=13
ARG UCX_CUDA_VER=11
ARG UCX_ARCH=x86_64
ARG ROCKY_VER=8
FROM nvidia/cuda:${CUDA_VER}-runtime-rockylinux${ROCKY_VER}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,19 @@

# Sample Dockerfile to install UCX in a Rocky Linux 8 image with RDMA support.
#
# The parameters are:
# - CUDA_VER: 13.0.1 by default
# - UCX_VER, UCX_CUDA_VER, and UCX_ARCH:
# The parameters are:
# - CUDA_VER: 13.0.1 by default - CUDA runtime version installed in the container
# - UCX_VER, UCX_CUDA_VER, and UCX_ARCH:
# Used to pick a package matching a specific UCX version and
# CUDA runtime from the UCX github repo.
# CUDA runtime from the UCX github repo. UCX_CUDA_VER is the CUDA version
# that UCX is built for (can be older than CUDA_VER due to backwards compatibility;
# CUDA 13 UCX builds are not available for Rocky Linux, hence UCX_CUDA_VER=11).
# See: https://github.com/openucx/ucx/releases/
# - ROCKY_VER: Rocky Linux OS version

ARG CUDA_VER=13.0.1
ARG UCX_VER=1.19.1-rc1
ARG UCX_CUDA_VER=13
ARG UCX_CUDA_VER=11
ARG UCX_ARCH=x86_64
ARG ROCKY_VER=8
FROM nvidia/cuda:${CUDA_VER}-runtime-rockylinux${ROCKY_VER}
Expand Down