diff --git a/dockerfiles/release-ci-aarch64.DockerFile b/dockerfiles/release-ci-aarch64.DockerFile index 7bb50ef..7953bb2 100644 --- a/dockerfiles/release-ci-aarch64.DockerFile +++ b/dockerfiles/release-ci-aarch64.DockerFile @@ -15,7 +15,8 @@ RUN yum install -y \ && yum clean all # install conda -RUN curl -L -O "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh" \ +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" \ && 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 cae8e56..2e12a8f 100644 --- a/dockerfiles/release-ci.DockerFile +++ b/dockerfiles/release-ci.DockerFile @@ -13,7 +13,8 @@ RUN yum install -y \ && yum clean all # install conda -RUN wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O Miniconda.sh \ +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 \ && bash Miniconda.sh -b \ && rm -f Miniconda.sh \ && /root/miniconda3/bin/conda init