From 8a241f46e1072ce60bc74699617e93d93621a541 Mon Sep 17 00:00:00 2001 From: David Galiffi Date: Thu, 12 Jun 2025 10:19:01 -0400 Subject: [PATCH] Updated Dockerfile.ubuntu (#245) Using miniforge instead of miniconda Signed-off-by: David Galiffi [ROCm/rocprofiler-systems commit: 877fa671cc4217cbd25a4f8c4c3d1a1579d85895] --- projects/rocprofiler-systems/docker/Dockerfile.ubuntu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/rocprofiler-systems/docker/Dockerfile.ubuntu b/projects/rocprofiler-systems/docker/Dockerfile.ubuntu index 46f895edf4..dab6dea85a 100644 --- a/projects/rocprofiler-systems/docker/Dockerfile.ubuntu +++ b/projects/rocprofiler-systems/docker/Dockerfile.ubuntu @@ -47,8 +47,8 @@ RUN if [ "${ROCM_VERSION}" != "0.0" ]; then \ ARG PYTHON_VERSIONS="6 7 8 9 10 11 12 13" -RUN wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh && \ - bash miniconda.sh -b -p /opt/conda && \ +RUN wget https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh -O miniforge.sh && \ + bash miniforge.sh -b -p /opt/conda && \ export PATH="/opt/conda/bin:${PATH}" && \ conda config --set always_yes yes --set changeps1 no && \ conda update -c conda-forge -n base conda && \