1
0
Fork 0
mirror of https://github.com/prometheus-operator/prometheus-operator.git synced 2025-04-21 03:38:43 +00:00

prometheus-config-reloader/Makefile: Rename image to container

This commit is contained in:
Max Leonard Inden 2018-06-05 10:10:20 +02:00
parent ff181be16f
commit 16085e0fff
No known key found for this signature in database
GPG key ID: 5403C5464810BC26

View file

@ -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