2015-07-10 00:49:45 +00:00
|
|
|
TAG = 1.6
|
2015-10-26 19:22:06 +00:00
|
|
|
PREFIX = gcr.io/google_containers
|
|
|
|
|
|
|
|
all: push
|
2015-03-18 21:17:41 +00:00
|
|
|
|
2014-11-22 01:05:27 +00:00
|
|
|
webserver: webserver.go
|
2015-01-21 05:03:23 +00:00
|
|
|
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-w' ./webserver.go
|
2014-11-22 01:05:27 +00:00
|
|
|
|
2015-10-26 19:22:06 +00:00
|
|
|
container: image
|
|
|
|
|
|
|
|
image: webserver
|
|
|
|
docker build -t $(PREFIX)/nettest:$(TAG) .
|
2014-11-22 01:05:27 +00:00
|
|
|
|
2015-10-26 19:22:06 +00:00
|
|
|
push: image
|
|
|
|
gcloud docker push $(PREFIX)/nettest:$(TAG)
|
2014-11-22 01:05:27 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f webserver
|