mirror of
https://github.com/kubernetes-sigs/prometheus-adapter.git
synced 2026-04-06 17:57:51 +00:00
This commit introduces a Dockerfile with some basic deployment instructions, as well as a makefile for convinience.
13 lines
188 B
Makefile
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
|