2015-10-19 22:15:37 +00:00
|
|
|
TAG = 0.5
|
2015-10-26 19:22:06 +00:00
|
|
|
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
|
2015-10-26 19:22:06 +00:00
|
|
|
sudo docker build -t $(PREFIX)/mounttest:$(TAG) .
|
2015-04-08 14:54:23 +00:00
|
|
|
|
|
|
|
push: image
|
2015-10-26 19:22:06 +00:00
|
|
|
gcloud docker push $(PREFIX)/mounttest:$(TAG)
|
2015-04-08 14:54:23 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f mt
|