From 75219aefcfc5ef5f86714a6bde5f90825d66155a Mon Sep 17 00:00:00 2001 From: James Munnelly Date: Wed, 6 May 2020 14:21:33 +0100 Subject: [PATCH] Fix 'make images' Signed-off-by: James Munnelly --- Makefile | 1 + build/BUILD.bazel | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index decdb0e85..939899045 100644 --- a/Makefile +++ b/Makefile @@ -97,6 +97,7 @@ images: APP_VERSION=$(APP_VERSION) \ DOCKER_REGISTRY=$(DOCKER_REPO) \ bazel run \ + --stamp \ --platforms=@io_bazel_rules_go//go/toolchain:linux_amd64 \ //build:server-images diff --git a/build/BUILD.bazel b/build/BUILD.bazel index 082935fb7..14a14e62f 100644 --- a/build/BUILD.bazel +++ b/build/BUILD.bazel @@ -49,7 +49,7 @@ multi_arch_container_push( name = "server-images", architectures = SERVER_PLATFORMS["linux"], docker_tags_images = { - "{{STABLE_DOCKER_REGISTRY}}/cert-manager-%s-{ARCH}:{{STABLE_DOCKER_TAG}}" % binary: "%s-internal" % binary + "{{STABLE_DOCKER_REGISTRY}}/cert-manager-%s-{ARCH}:{{STABLE_DOCKER_TAG}}" % binary: "%s.image" % binary for binary in DOCKERIZED_BINARIES.keys() }, tags = ["manual"],