prometheus-adapter/Makefile
Solly Ross 66cf5eaafb Provide basic deployment instructions
This commit introduces a Dockerfile with some basic deployment
instructions, as well as a makefile for convinience.
2017-06-24 01:42:10 -04:00

13 lines
188 B
Makefile

all: build
build:
go build cmd/adapter.go
.PHONY: build
docker-build: adapter
docker build -t cm-adapter -f deploy/Dockerfile .
.PHONY: docker-build
clean:
rm adapter
.PHONY: clean