diff --git a/coffea-base/Dockerfile.almalinux9 b/coffea-base/Dockerfile.almalinux9 index 38760d8..13f6fd9 100644 --- a/coffea-base/Dockerfile.almalinux9 +++ b/coffea-base/Dockerfile.almalinux9 @@ -7,9 +7,8 @@ ENV PYTHON_VERSION=${python} RUN yum -y install epel-release \ && yum -y update \ - && yum -y remove curl-minimal \ - && yum -y --allowerasing install curl git bzip2 libgfortran which zsh emacs vim htop man man-pages \ - && curl -sSL https://github.com/conda-forge/miniforge/releases/download/23.3.1-1/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \ + && yum -y --allowerasing install wget git bzip2 libgfortran which zsh emacs vim htop man man-pages \ + && wget https://github.com/conda-forge/miniforge/releases/download/23.3.1-1/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \ && bash /tmp/mambaforge.sh -bfp /usr/local \ && rm -rf /tmp/mambaforge.sh \ && mamba update mamba \ diff --git a/coffea-dask/Dockerfile.almalinux9 b/coffea-dask/Dockerfile.almalinux9 index be8b8a6..30b5b18 100644 --- a/coffea-dask/Dockerfile.almalinux9 +++ b/coffea-dask/Dockerfile.almalinux9 @@ -8,8 +8,8 @@ ENV PYTHON_VERSION=${python} RUN yum -y install epel-release \ && yum -y update \ && yum -y remove curl-minimal \ - && yum -y --allowerasing --nobest install curl git bzip2 libgfortran which zsh emacs vim htop man man-pages \ - && curl -sSL https://github.com/conda-forge/miniforge/releases/download/23.3.1-1/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \ + && yum -y --allowerasing install wget git bzip2 libgfortran which zsh emacs vim htop man man-pages \ + && wget https://github.com/conda-forge/miniforge/releases/download/23.3.1-1/Mambaforge-Linux-x86_64.sh -o /tmp/mambaforge.sh \ && bash /tmp/mambaforge.sh -bfp /usr/local \ && rm -rf /tmp/mambaforge.sh \ && mamba update mamba \