From 45c6d15045995e72b88ff584047c1f41a7fe90c4 Mon Sep 17 00:00:00 2001 From: tongke6 Date: Mon, 8 Dec 2025 12:35:39 +0800 Subject: [PATCH] fix conda download url not right issue --- dockerfiles/release-ci-aarch64.DockerFile | 2 +- dockerfiles/release-ci.DockerFile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/release-ci-aarch64.DockerFile b/dockerfiles/release-ci-aarch64.DockerFile index 7953bb2..55a311d 100644 --- a/dockerfiles/release-ci-aarch64.DockerFile +++ b/dockerfiles/release-ci-aarch64.DockerFile @@ -16,7 +16,7 @@ RUN yum install -y \ # install conda ARG CONDA_VERSION="25.1.1-2" -RUN curl -L -O "https://github.com/conda-forge/miniforge/releases/${CONDA_VERSION}/download/Miniforge3-$(uname)-$(uname -m).sh" \ +RUN curl -L -O "https://github.com/conda-forge/miniforge/releases/download/${CONDA_VERSION}/Miniforge3-$(uname)-$(uname -m).sh" \ && bash Miniforge3-$(uname)-$(uname -m).sh -b \ && rm -f Miniforge3-$(uname)-$(uname -m).sh \ && /root/miniforge3/bin/conda init diff --git a/dockerfiles/release-ci.DockerFile b/dockerfiles/release-ci.DockerFile index 2e12a8f..b9850e2 100644 --- a/dockerfiles/release-ci.DockerFile +++ b/dockerfiles/release-ci.DockerFile @@ -14,7 +14,7 @@ RUN yum install -y \ # install conda ARG CONDA_VERSION="25.1.1-2" -RUN wget "https://github.com/conda-forge/miniforge/releases/${CONDA_VERSION}/download/Miniforge3-Linux-x86_64.sh" -O Miniconda.sh \ +RUN wget "https://github.com/conda-forge/miniforge/releases/download/${CONDA_VERSION}/Miniforge3-Linux-x86_64.sh" -O Miniconda.sh \ && bash Miniconda.sh -b \ && rm -f Miniconda.sh \ && /root/miniconda3/bin/conda init