Skip to content

Commit

Permalink
Update release-ci-aarch64.DockerFile
Browse files Browse the repository at this point in the history
  • Loading branch information
anakinxc authored Dec 15, 2023
1 parent 2c4e0eb commit 33dde7d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions dockerfiles/release-ci-aarch64.DockerFile
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ RUN yum install -y \
&& yum clean all

# install conda
RUN wget https://repo.anaconda.com/miniconda/Miniconda3-py310_23.10.0-1-Linux-aarch64.sh \
&& bash Miniconda3-py310_23.10.0-1-Linux-aarch64.sh -b \
&& rm -f Miniconda3-py310_23.10.0-1-Linux-aarch64.sh \
&& /root/miniconda3/bin/conda init
RUN curl -L -O "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh" \
&& bash Miniforge3-$(uname)-$(uname -m).sh -b \
&& rm -f Miniforge3-$(uname)-$(uname -m).sh \
&& /root/miniforge3/bin/conda init

# Add conda to path
ENV PATH="/root/miniconda3/bin:${PATH}"
ENV PATH="/root/miniforge3/bin:${PATH}"

# Install lld
RUN /root/miniconda3/bin/conda install -c conda-forge lld nasm cmake gxx==11.4.0 clangxx -y \
&& /root/miniconda3/bin/conda clean -afy
RUN /root/miniforge3/bin/conda install -c conda-forge lld nasm cmake gxx==11.4.0 clangxx -y \
&& /root/miniforge3/bin/conda clean -afy

# install Rust
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
Expand Down

0 comments on commit 33dde7d

Please sign in to comment.