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.
1 parent 09dce1f commit 96ba895Copy full SHA for 96ba895
Makefile
@@ -235,9 +235,7 @@ define multiarch_build
235
GOOS=linux GOARCH=arm64 IMAGE_TAG="$(IMAGE_TAG)-arm64" $(MAKE) $(build_cmd) IMAGE_PLATFORM=linux/arm64
236
GOOS=linux GOARCH=amd64 IMAGE_TAG="$(IMAGE_TAG)-amd64" $(MAKE) $(build_cmd) IMAGE_PLATFORM=linux/amd64
237
238
- $(if $(push_image), \
239
- docker manifest create --amend "$(image_name)" "$(image_name)-amd64" "$(image_name)-arm64" && \
240
- docker manifest push "$(image_name)")
+ $(if $(push_image), docker buildx imagetools create --tag "$(image_name)" "$(image_name)-amd64" "$(image_name)-arm64")
241
endef
242
243
.PHONY: docker-image/pyroscope/build-multiarch
0 commit comments