Skip to content

Commit

Permalink
update dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
chrispyles committed Jul 16, 2023
1 parent 53ec120 commit 6619fba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ RUN apt-get update && apt-get upgrade -y && apt-get install -y wget make build-e
# Install mamba
RUN if [ $(uname -p) = "arm" ] || [ $(uname -p) = "aarch64" ] ; \
then wget -nv https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-aarch64.sh \
-O {{ autograder_dir }}/source/mamba_install.sh ; \
-O /tmp/mamba_install.sh ; \
else wget -nv https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-x86_64.sh \
-O {{ autograder_dir }}/source/mamba_install.sh ; \
-O /tmp/mamba_install.sh ; \
fi && \
chmod +x /tmp/mamba_install.sh && \
/tmp/mamba_install.sh -b
Expand Down

0 comments on commit 6619fba

Please sign in to comment.