k3s/test/images/mount-tester/Makefile

17 lines
285 B
Makefile
Raw Normal View History

TAG = 0.5
PREFIX = gcr.io/google_containers
all: push
2015-04-08 14:54:23 +00:00
mt: mt.go
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-w' ./mt.go
image: mt
sudo docker build -t $(PREFIX)/mounttest:$(TAG) .
2015-04-08 14:54:23 +00:00
push: image
gcloud docker push $(PREFIX)/mounttest:$(TAG)
2015-04-08 14:54:23 +00:00
clean:
rm -f mt