We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fdeb20 commit fa08d3eCopy full SHA for fa08d3e
Makefile
@@ -71,6 +71,10 @@ image: image.created-$(ARCH)
71
image.created-$(ARCH): dist/kube-controllers-linux-$(ARCH)
72
# Build the docker image for the policy controller.
73
docker build -t $(CONTAINER_NAME):latest-$(ARCH) -f Dockerfile.$(ARCH) .
74
+ifeq ($(ARCH),amd64)
75
+ # Need amd64 builds tagged as :latest because Semaphore depends on that
76
+ docker tag $(CONTAINER_NAME):latest-$(ARCH) $(CONTAINER_NAME):latest
77
+endif
78
touch $@
79
80
image-all: $(addprefix sub-image-,$(ARCHES))
0 commit comments