1
0
mirror of https://github.com/golang/go synced 2024-10-01 16:28:33 -06:00
go/cmd/tip/Makefile
Brad Fitzpatrick 03d3934baf cmd/tip: move tip.golang.org from App Engine to Kubernetes on GKE
Change-Id: I52ca7eaca98de27bd920ae01086b3f7724819738
Reviewed-on: https://go-review.googlesource.com/37754
Reviewed-by: Chris Broadfoot <cbro@golang.org>
2017-03-07 03:49:08 +00:00

16 lines
539 B
Makefile

# Copyright 2017 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
VERSION=v1
docker-prod: Dockerfile
docker build -f Dockerfile --tag=gcr.io/symbolic-datum-552/tip:$(VERSION) .
docker-dev: Dockerfile
docker build -f Dockerfile --tag=gcr.io/go-dashboard-dev/tip:$(VERSION) .
push-prod: docker-prod
gcloud docker push -- gcr.io/symbolic-datum-552/tip:$(VERSION)
push-dev: docker-dev
gcloud docker push -- gcr.io/go-dashboard-dev/tip:$(VERSION)