From 7c6d90e28f39a57e93fc89bb2d59957ee6bd5ff4 Mon Sep 17 00:00:00 2001 From: Zach Koopmans Date: Wed, 31 Aug 2022 10:54:02 -0700 Subject: [PATCH] Fix make-push% rule for presubmit images. PiperOrigin-RevId: 471296093 --- tools/images.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/images.mk b/tools/images.mk index 4e267167d..1bdb171ef 100644 --- a/tools/images.mk +++ b/tools/images.mk @@ -154,6 +154,7 @@ load-%: register-cross ## Pull or build an image locally. # the fully-expanded remote image tag. push-%: load-% ## Push a given image. @docker image push $(call remote_image,$*):$(call tag,$*) >&2 + @docker image tag $(call remote_image,$*) $(call remote_image,$*):latest >&2 @docker image push $(call remote_image,$*):latest >&2 # register-cross registers the necessary qemu binaries for cross-compilation.