1
0
Fork 0
mirror of https://github.com/prometheus-operator/prometheus-operator.git synced 2025-04-16 01:06:27 +00:00

Merge pull request #1428 from mxinden/rename-container

prometheus-config-reloader/Makefile: Rename image to container
This commit is contained in:
Frederic Branczyk 2018-06-05 10:46:26 +02:00 committed by GitHub
commit 5eb0b7414b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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