1
0
Fork 0
mirror of https://github.com/prometheus-operator/prometheus-operator.git synced 2025-04-21 11:48:53 +00:00

adapt container image repo

This commit is contained in:
Frederic Branczyk 2016-11-01 17:36:06 +01:00
parent de8566b8b0
commit 670e543c00
No known key found for this signature in database
GPG key ID: CA14788B1E48B256

View file

@ -1,6 +1,13 @@
all: build
REPO = quay.io/coreos/prometheus-operator
TAG = latest
build:
./scripts/check_license.sh
go build github.com/coreos/prometheus-operator/cmd/operator
container:
docker build -t quay.io/coreos/prometheus-operator.
docker build -t $(REPO):$(TAG) .
.PHONY: all build container