diff --git a/contrib/prometheus-config-reloader/Makefile b/contrib/prometheus-config-reloader/Makefile
index e965f9743..5a1ab0660 100644
--- a/contrib/prometheus-config-reloader/Makefile
+++ b/contrib/prometheus-config-reloader/Makefile
@@ -10,13 +10,13 @@ IMAGE = $(REPO):$(TAG)
 build:
 	$(ENVVAR) go build -o $(NAME) main.go
 
-image: build
+container: build
 	docker build -t $(IMAGE) .
 
-push: image
+push: container
 	docker push $(IMAGE)
 
 clean:
 	rm -f $(NAME)
 
-.PHONY: all build image push clean
+.PHONY: all build container push clean