Skip to content

Commit

Permalink
INST-12: Updates for AD-2023.07-1 (#386)
Browse files Browse the repository at this point in the history
* Update versions and hashes

* Update version & hashes for Anaconda Distribution

* Update version to 2023.07-1
  • Loading branch information
Jrice1317 authored Jul 18, 2023
1 parent d51a2b0 commit 5b3ee4f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion anaconda3/amazonlinux/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ RUN yum install -y \
subversion && \
yum clean all && \
rm -rf /var/cache/yum && \
wget --quiet https://repo.anaconda.com/archive/Anaconda3-2023.03-1-Linux-aarch64.sh -O ~/anaconda.sh && \
wget --quiet https://repo.anaconda.com/archive/Anaconda3-2023.07-1-Linux-aarch64.sh -O ~/anaconda.sh && \
/bin/bash ~/anaconda.sh -b -p /opt/conda && \
rm ~/anaconda.sh && \
ln -s /opt/conda/etc/profile.d/conda.sh /etc/profile.d/conda.sh && \
Expand Down
16 changes: 8 additions & 8 deletions anaconda3/debian/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,17 @@ RUN set -x && \
&& rm -rf /var/lib/apt/lists/* && \
UNAME_M="$(uname -m)" && \
if [ "${UNAME_M}" = "x86_64" ]; then \
ANACONDA_URL="https://repo.anaconda.com/archive/Anaconda3-2023.03-1-Linux-x86_64.sh"; \
SHA256SUM="95102d7c732411f1458a20bdf47e4c1b0b6c8a21a2edfe4052ca370aaae57bab"; \
ANACONDA_URL="https://repo.anaconda.com/archive/Anaconda3-2023.07-1-Linux-x86_64.sh"; \
SHA256SUM="111ce0a7f26e606863008a9519fd608b1493e483b6f487aea71d82b13fe0967e"; \
elif [ "${UNAME_M}" = "s390x" ]; then \
ANACONDA_URL="https://repo.anaconda.com/archive/Anaconda3-2023.03-1-Linux-s390x.sh"; \
SHA256SUM="5af1406c6350b4ba6839c49faa32a3c90f2b9845a03c35843f118dd9dd013421"; \
ANACONDA_URL="https://repo.anaconda.com/archive/Anaconda3-2023.07-1-Linux-s390x.sh"; \
SHA256SUM="49aad1bc077334f30177443c234f3c982f1c9751fc78c4c29fb4cf736e4f61ef"; \
elif [ "${UNAME_M}" = "aarch64" ]; then \
ANACONDA_URL="https://repo.anaconda.com/archive/Anaconda3-2023.03-1-Linux-aarch64.sh"; \
SHA256SUM="54e600faa2af63a25717af30ecaddf1ee428cdfebd3721a70f41462e232e8153"; \
ANACONDA_URL="https://repo.anaconda.com/archive/Anaconda3-2023.07-1-Linux-aarch64.sh"; \
SHA256SUM="2ebe549375f3f5ffec9558a8a8405ebd697e69c8133b8f9c1c5cd4ff69d1cc74"; \
elif [ "${UNAME_M}" = "ppc64le" ]; then \
ANACONDA_URL="https://repo.anaconda.com/archive/Anaconda3-2023.03-1-Linux-ppc64le.sh"; \
SHA256SUM="a31f2d6da83534cff7c994403cc11fa634b31fcd10eb4153d00233345ee084b2"; \
ANACONDA_URL="https://repo.anaconda.com/archive/Anaconda3-2023.07-1-Linux-ppc64le.sh"; \
SHA256SUM="ee149f55ebdd3f15fc1db4e9cddb5126da62e7a193fa15026c9fa009a2575d0a"; \
fi && \
wget "${ANACONDA_URL}" -O anaconda.sh -q && \
echo "${SHA256SUM} anaconda.sh" > shasum && \
Expand Down

0 comments on commit 5b3ee4f

Please sign in to comment.