We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9d128d commit c199430Copy full SHA for c199430
bin/build-all.sh
@@ -34,7 +34,7 @@ for i in ./build/*/; do
34
echo "${text_bold}* Building ${image} ${text_normal}"
35
36
# Builds image and check for return code
37
- if docker build --pull -t "${image}" "./build/${version}"; then
+ if docker buildx build --push --platform linux/arm64,linux/amd64 -t "${image}" "./build/${version}"; then
38
build_done+=( "${image}" )
39
else
40
echo "${text_bold}${text_red}* ERROR when building ${image} ${text_normal}"
0 commit comments