Skip to content

Commit 0fc21fa

Browse files
authored
🔨 Download correct miniconda software package when building terminal images
2 parents d8836cc + a4a25bc commit 0fc21fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎make/terminal/Dockerfile‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ RUN mkdir /var/run/sshd && \
3737
sed -i 's/#PasswordAuthentication yes/PasswordAuthentication no/' /etc/ssh/sshd_config
3838

3939
# Install Miniconda
40-
RUN wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O /tmp/miniconda.sh && \
40+
RUN wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-$(echo $TARGETPLATFORM | sed 's/linux\///' | sed 's/amd64/x86_64/' | sed 's/arm64/aarch64/').sh -O /tmp/miniconda.sh && \
4141
bash /tmp/miniconda.sh -b -p $CONDA_DIR && \
4242
rm /tmp/miniconda.sh
4343

0 commit comments

Comments
 (0)