Skip to content

Commit c199430

Browse files
committed
Added support for Apple Silicon
1 parent a9d128d commit c199430

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/build-all.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ for i in ./build/*/; do
3434
echo "${text_bold}* Building ${image} ${text_normal}"
3535

3636
# Builds image and check for return code
37-
if docker build --pull -t "${image}" "./build/${version}"; then
37+
if docker buildx build --push --platform linux/arm64,linux/amd64 -t "${image}" "./build/${version}"; then
3838
build_done+=( "${image}" )
3939
else
4040
echo "${text_bold}${text_red}* ERROR when building ${image} ${text_normal}"

0 commit comments

Comments
 (0)