diff --git a/Docker/anaconda_install.sh b/Docker/anaconda_install.sh index 0ce71883..92965659 100644 --- a/Docker/anaconda_install.sh +++ b/Docker/anaconda_install.sh @@ -20,7 +20,7 @@ fi if [ "$TARGETPLATFORM" = "linux/amd64" ]; then eval "$WGET_CMD -O anaconda.sh https://repo.anaconda.com/archive/Anaconda3-2024.02-1-Linux-x86_64.sh" elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then - eval "$WGET_CMD -O anaconda.sh https://repo.anaconda.com/archive/Anaconda3-2024.02-1-Linux-aarch.sh" + eval "$WGET_CMD -O anaconda.sh https://repo.anaconda.com/archive/Anaconda3-2024.02-1-Linux-aarch64.sh" else exit 1 fi diff --git a/Docker/setup.sh b/Docker/setup.sh index 3f04509c..43c81eb1 100644 --- a/Docker/setup.sh +++ b/Docker/setup.sh @@ -12,9 +12,9 @@ WORKFLOW=${WORKFLOW:-"false"} LITE=${LITE:-"false"} if [ "$WORKFLOW" = "true" ]; then - WGET_CMD="wget --tries=25 --wait=5 --read-timeout=40 --retry-on-http-error=404" -else WGET_CMD="wget -nv --tries=25 --wait=5 --read-timeout=40 --retry-on-http-error=404" +else + WGET_CMD="wget --tries=25 --wait=5 --read-timeout=40 --retry-on-http-error=404" fi USE_FUNASR=false