From 297da35d61440d416af495c1d07755d67201fc22 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Tue, 13 Jan 2026 14:28:32 -0600 Subject: [PATCH 1/3] RSN 57: deprecating rapidsai/miniforge-cuda --- _notices/rsn0057.md | 61 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 _notices/rsn0057.md diff --git a/_notices/rsn0057.md b/_notices/rsn0057.md new file mode 100644 index 00000000000..fadc360b1ec --- /dev/null +++ b/_notices/rsn0057.md @@ -0,0 +1,61 @@ +--- +layout: notice +parent: RAPIDS Support Notices +grand_parent: RAPIDS Notices +nav_exclude: true +notice_type: rsn +# Update meta-data for notice +notice_id: 56 # should match notice number +notice_pin: true # set to true to pin to notice page +title: "Docker image deprecation: rapidsai/miniforge-cuda" +notice_author: RAPIDS Ops +notice_status: "In Progress" +notice_status_color: yellow +# 'notice_status' and 'notice_status_color' combinations: +# "Proposal" - "blue" +# "Completed" - "green" +# "Review" - "purple" +# "In Progress" - "yellow" +# "Closed" - "red" +notice_topic: Library Deprecation +notice_rapids_version: "v26.02" +notice_created: 2026-01-13 +# 'notice_updated' should match 'notice_created' until an update is made +notice_updated: 2026-01-13 +--- + +## Overview + +RAPIDS `v26.02` will be the final release to publish `rapidsai/miniforge-cuda` images. + +## Impact + +If you're using `rapidsai/miniforge-cuda` ([DockerHub link](https://hub.docker.com/r/rapidsai/miniforge-cuda)) in situations where pulling a prebuilt image is preferred to building your own, switch to `rapidsai/ci-conda` ([DockerHub link](https://hub.docker.com/r/rapidsai/ci-conda)). + +If `rapidsai/ci-conda` does not meet your needs, consider using `nvidia/cuda` images together with `micromamba` (https://mamba.readthedocs.io/en/latest/installation/micromamba-installation.html). + +```shell +docker run \ + --rm \ + --gpus all \ + -it nvidia/cuda:13.1.0-devel-ubuntu24.04 \ + bash + +if [[ "$(arch)" == "x86_64" ]]; then + micromamba_platform="linux-64" +else + micromamba_platform="linux-aarch64" +fi +curl -Ls https://micro.mamba.pm/api/micromamba/${micromamba_platform}/latest | tar -xvj bin/micromamba + +micromamba shell init +source ~/.bashrc + +micromamba activate base +micromamba install \ + -c rapidsai \ + -c conda-forge \ + rapids +``` + +For more details on this change, see https://github.com/rapidsai/ci-imgs/issues/345 From df3c3c8e03e9ba4906cb7bb71162a92971b2e903 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Tue, 13 Jan 2026 14:28:47 -0600 Subject: [PATCH 2/3] add container --- _notices/rsn0057.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_notices/rsn0057.md b/_notices/rsn0057.md index fadc360b1ec..97321ba3a7d 100644 --- a/_notices/rsn0057.md +++ b/_notices/rsn0057.md @@ -26,7 +26,7 @@ notice_updated: 2026-01-13 ## Overview -RAPIDS `v26.02` will be the final release to publish `rapidsai/miniforge-cuda` images. +RAPIDS `v26.02` will be the final release to publish `rapidsai/miniforge-cuda` container images. ## Impact @@ -52,7 +52,7 @@ micromamba shell init source ~/.bashrc micromamba activate base -micromamba install \ +micromamba install --yes \ -c rapidsai \ -c conda-forge \ rapids From 8812448dd51cbc00f998f30666ed83594a0f4a80 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Wed, 14 Jan 2026 09:46:19 -0600 Subject: [PATCH 3/3] correct RSN number --- _notices/rsn0057.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_notices/rsn0057.md b/_notices/rsn0057.md index 97321ba3a7d..2c5a90b9fa2 100644 --- a/_notices/rsn0057.md +++ b/_notices/rsn0057.md @@ -5,7 +5,7 @@ grand_parent: RAPIDS Notices nav_exclude: true notice_type: rsn # Update meta-data for notice -notice_id: 56 # should match notice number +notice_id: 57 # should match notice number notice_pin: true # set to true to pin to notice page title: "Docker image deprecation: rapidsai/miniforge-cuda" notice_author: RAPIDS Ops @@ -19,9 +19,9 @@ notice_status_color: yellow # "Closed" - "red" notice_topic: Library Deprecation notice_rapids_version: "v26.02" -notice_created: 2026-01-13 +notice_created: 2026-01-14 # 'notice_updated' should match 'notice_created' until an update is made -notice_updated: 2026-01-13 +notice_updated: 2026-01-14 --- ## Overview