Skip to content

Commit 4df3ec4

Browse files
committed
fix hash and match conda version
1 parent 3264f77 commit 4df3ec4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docker/1.2-1/base/Dockerfile.cpu

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ ARG UBUNTU_IMAGE_DIGEST=874aca52f79ae5f8258faff03e10ce99ae836f6e7d2df6ecd3da5c1c
33

44
FROM ubuntu:${UBUNTU_VERSION}@sha256:${UBUNTU_IMAGE_DIGEST}
55

6-
ARG MINICONDA_VERSION=24.9.2
7-
ARG CONDA_CHECKSUM=2006a61abc8b4fd04de5eb92620e1f72bada713cc84b5b4899463095e1210556
6+
ARG MINICONDA_VERSION=25.1.1
7+
ARG CONDA_CHECKSUM=b40682cedf1e1755c02555f8d3d98aadb4607a68da7caf72a9bbe1fb9ae0b904
88
ARG CONDA_PY_VERSION=39
9-
ARG CONDA_PKG_VERSION=24.7.1
9+
ARG CONDA_PKG_VERSION=25.1.1
1010
ARG PYTHON_VERSION=3.9
1111
ARG PYARROW_VERSION=14.0.1
1212
ARG MLIO_VERSION=v0.9.0
@@ -72,7 +72,7 @@ RUN ln -fs /usr/share/zoneinfo/UTC /etc/localtime && \
7272
dpkg-reconfigure --frontend noninteractive tzdata
7373

7474
RUN cd /tmp && \
75-
curl -L --output /tmp/Miniconda3.sh https://repo.anaconda.com/miniconda/Miniconda3-py${CONDA_PY_VERSION}_${MINICONDA_VERSION}-0-Linux-x86_64.sh && \
75+
curl -L --output /tmp/Miniconda3.sh https://repo.anaconda.com/miniconda/Miniconda3-py${CONDA_PY_VERSION}_${MINICONDA_VERSION}-2-Linux-x86_64.sh && \
7676
echo "${CONDA_CHECKSUM} /tmp/Miniconda3.sh" | sha256sum -c - && \
7777
bash /tmp/Miniconda3.sh -bfp /miniconda3 && \
7878
rm /tmp/Miniconda3.sh && \

0 commit comments

Comments
 (0)