k3s/test/images/entrypoint-tester/Makefile

17 lines
263 B
Makefile
Raw Normal View History

2015-03-31 02:56:34 +00:00
TAG = 0.1
PREFIX = kubernetes
all: push
2015-03-31 02:56:34 +00:00
ep: ep.go
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-w' ./ep.go
image: ep
sudo docker build -t $(PREFIX)/eptest:$(TAG) .
2015-03-31 02:56:34 +00:00
push: image
sudo docker push $(PREFIX)/eptest:$(TAG)
2015-03-31 02:56:34 +00:00
clean:
rm -f ep