diff --git a/GNUmakefile b/GNUmakefile index 66570f4397..7910125bb3 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -157,8 +157,9 @@ dev-docker: linux @echo "Pulling consul container image - $(CONSUL_IMAGE_VERSION)" @docker pull consul:$(CONSUL_IMAGE_VERSION) >/dev/null @echo "Building Consul Development container - $(CONSUL_DEV_IMAGE)" - # 'consul:local' tag is needed to run the integration tests - @docker buildx use default && docker buildx build -t 'consul:local' \ + @# 'consul:local' tag is needed to run the integration tests + @# 'consul-dev:latest' is needed by older workflows + @docker buildx use default && docker buildx build -t 'consul:local' -t '$(CONSUL_DEV_IMAGE)' \ --platform linux/$(GOARCH) \ --build-arg CONSUL_IMAGE_VERSION=$(CONSUL_IMAGE_VERSION) \ --load \