1
0
Fork 0
mirror of https://github.com/prometheus-operator/prometheus-operator.git synced 2025-04-16 09:16:38 +00:00
prometheus-operator/Makefile

14 lines
239 B
Makefile
Raw Normal View History

2016-11-01 17:36:06 +01:00
all: build
REPO = quay.io/coreos/prometheus-operator
TAG = latest
build:
./scripts/check_license.sh
2016-11-01 14:19:25 +01:00
go build github.com/coreos/prometheus-operator/cmd/operator
container:
2016-11-01 17:36:06 +01:00
docker build -t $(REPO):$(TAG) .
.PHONY: all build container