because I got bored of customising my CV for every job
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(CVG-29): use buildx for multi-arch Docker builds (amd64 + arm64)

+3 -6
+3 -6
ci/build-images.sh
··· 36 36 done 37 37 38 38 echo "Building ${image}:${VERSION} from ${dockerfile}..." 39 - docker build \ 39 + docker buildx build \ 40 40 -f "${dockerfile}" \ 41 + --platform linux/amd64,linux/arm64 \ 41 42 --target production \ 42 43 --build-arg "GITHUB_TOKEN=${GITHUB_TOKEN}" \ 43 44 "${tag_args[@]}" \ 45 + --push \ 44 46 . 45 - 46 - for t in "${tags[@]}"; do 47 - echo "Pushing ${t}..." 48 - docker push "$t" 49 - done 50 47 } 51 48 52 49 build_and_push server .docker/server.Dockerfile