Skip to content

Commit

Permalink
dynamically set image architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
ravnoor committed Dec 20, 2023
1 parent 8bc8f85 commit 518b6dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ RUN apt-get update && \
wget

# install miniconda3
RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-py310_23.11.0-1-Linux-x86_64.sh \
&& /bin/bash Miniconda3-py310_23.11.0-1-Linux-x86_64.sh -b -p /opt/conda \
&& rm Miniconda3-py310_23.11.0-1-Linux-x86_64.sh
RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-py310_23.11.0-1-Linux-$(uname -m).sh \
&& /bin/bash Miniconda3-py310_23.11.0-1-Linux-$(uname -m).sh -b -p /opt/conda \
&& rm Miniconda3-py310_23.11.0-1-Linux-$(uname -m).sh
ENV PATH=/opt/conda/bin:$PATH

# install cmake binary using conda for multi-arch support
Expand Down

0 comments on commit 518b6dd

Please sign in to comment.