Skip to content

Commit

Permalink
[ci/docker] Fix arm64 docker image builds by downgrading miniconda (r…
Browse files Browse the repository at this point in the history
  • Loading branch information
krfricke authored and architkulkarni committed May 16, 2023
1 parent ee51495 commit 1e59a82
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docker/base-deps/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ RUN apt-get update -y \
USER $RAY_UID
ENV HOME=/home/ray

# Todo (krfricke): Move to latest miniconda version once we stop building
# images for Python 3.7.
# https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-${HOSTTYPE}.sh

RUN sudo apt-get update -y && sudo apt-get upgrade -y \
&& sudo apt-get install -y \
git \
Expand All @@ -44,7 +48,7 @@ RUN sudo apt-get update -y && sudo apt-get upgrade -y \
openssh-client \
gnupg; fi) \
&& wget \
--quiet "https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-${HOSTTYPE}.sh" \
--quiet "https://repo.anaconda.com/miniconda/Miniconda3-py37_23.1.0-1-Linux-${HOSTTYPE}.sh" \
-O /tmp/miniconda.sh \
&& /bin/bash /tmp/miniconda.sh -b -u -p $HOME/anaconda3 \
&& $HOME/anaconda3/bin/conda init \
Expand Down

0 comments on commit 1e59a82

Please sign in to comment.