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