From 8e39cd63e50fcc07563a0fa5c9dcbc12427598d9 Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Sat, 17 Jul 2021 00:10:37 +0200 Subject: [PATCH] fix: add missing --push flag to push-multi command in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ffe66cb8..ecb6a227 100644 --- a/Makefile +++ b/Makefile @@ -188,7 +188,7 @@ push-all: $(foreach I, $(ALL_IMAGES), push/$(I)) ## push all tagged images push-multi/%: DARGS?= push-multi/%: ## push all tags for a jupyter image that support multiple architectures @echo "::group::Push $(OWNER)/$(notdir $@) (amd64,arm64)" - docker buildx build $(DARGS) --rm --force-rm $($(subst -,_,$(notdir $@))_EXTRA_TAG_ARGS) -t $(OWNER)/$(notdir $@):latest ./$(notdir $@) --build-arg OWNER=$(OWNER) --platform "linux/amd64,linux/arm64" + docker buildx build $(DARGS) --rm --force-rm $($(subst -,_,$(notdir $@))_EXTRA_TAG_ARGS) -t $(OWNER)/$(notdir $@):latest ./$(notdir $@) --build-arg OWNER=$(OWNER) --platform "linux/amd64,linux/arm64" --push @echo "::endgroup::" push-all-multi: $(foreach I, $(MULTI_IMAGES), push-multi/$(I)) $(foreach I, $(AMD64_ONLY_IMAGES), push/$(I)) ## push all tagged images