We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3cab3c1 + 972f072 commit f149fedCopy full SHA for f149fed
scripts/docker_build.sh
@@ -29,9 +29,11 @@ VERSION=$(gen_version)
29
30
31
SYS_ARCH=$(arch)
32
+echo "SYS_ARCH: ${SYS_ARCH}"
33
+echo "ARCH: ${ARCH}"
34
if [[ (${SYS_ARCH} == "aarch64" || ${SYS_ARCH} == "arm64") && $ARCH == "amd64" ]];then
35
OPTIONS="--platform=linux/amd64"
-elif [[ ${SYS_ARCH} == "amd64" && $ARCH == "arm64" ]];then
36
+elif [[ (${SYS_ARCH} == "amd64" || ${SYS_ARCH} == "x86_64") && $ARCH == "arm64" ]];then
37
OPTIONS="--platform=linux/arm64"
38
fi
39
0 commit comments