diff --git a/miniconda3/debian/Dockerfile b/miniconda3/debian/Dockerfile index 8ed1879f..f41890b5 100644 --- a/miniconda3/debian/Dockerfile +++ b/miniconda3/debian/Dockerfile @@ -27,22 +27,22 @@ ENV PATH /opt/conda/bin:$PATH CMD [ "/bin/bash" ] # Leave these args here to better use the Docker build cache -ARG CONDA_VERSION=py310_23.3.1-0 +ARG CONDA_VERSION=py311_23.5.2-0 RUN set -x && \ UNAME_M="$(uname -m)" && \ if [ "${UNAME_M}" = "x86_64" ]; then \ MINICONDA_URL="https://repo.anaconda.com/miniconda/Miniconda3-${CONDA_VERSION}-Linux-x86_64.sh"; \ - SHA256SUM="aef279d6baea7f67940f16aad17ebe5f6aac97487c7c03466ff01f4819e5a651"; \ + SHA256SUM="634d76df5e489c44ade4085552b97bebc786d49245ed1a830022b0b406de5817"; \ elif [ "${UNAME_M}" = "s390x" ]; then \ MINICONDA_URL="https://repo.anaconda.com/miniconda/Miniconda3-${CONDA_VERSION}-Linux-s390x.sh"; \ - SHA256SUM="ed4f51afc967e921ff5721151f567a4c43c4288ac93ec2393c6238b8c4891de8"; \ + SHA256SUM="221a4cd7f0a9275c3263efa07fa37385746de884f4306bb5d1fe5733ca770550"; \ elif [ "${UNAME_M}" = "aarch64" ]; then \ MINICONDA_URL="https://repo.anaconda.com/miniconda/Miniconda3-${CONDA_VERSION}-Linux-aarch64.sh"; \ - SHA256SUM="6950c7b1f4f65ce9b87ee1a2d684837771ae7b2e6044e0da9e915d1dee6c924c"; \ + SHA256SUM="3962738cfac270ae4ff30da0e382aecf6b3305a12064b196457747b157749a7a"; \ elif [ "${UNAME_M}" = "ppc64le" ]; then \ MINICONDA_URL="https://repo.anaconda.com/miniconda/Miniconda3-${CONDA_VERSION}-Linux-ppc64le.sh"; \ - SHA256SUM="b3de538cd542bc4f5a2f2d2a79386288d6e04f0e1459755f3cefe64763e51d16"; \ + SHA256SUM="92237cb2a443dd15005ec004f2f744b14de02cd5513a00983c2f191eb43d1b29"; \ fi && \ wget "${MINICONDA_URL}" -O miniconda.sh -q && \ echo "${SHA256SUM} miniconda.sh" > shasum && \