mirror of
https://github.com/wahyd4/ingress-nginx.git
synced 2026-08-23 04:25:49 +10:00
12 lines
215 B
Makefile
12 lines
215 B
Makefile
all: push
|
|
|
|
# TAG 0.0 shouldn't clobber any release builds
|
|
TAG = 1.4
|
|
PREFIX = gcr.io/google_containers/echoserver
|
|
|
|
container:
|
|
docker build -t $(PREFIX):$(TAG) .
|
|
|
|
push: container
|
|
gcloud docker push $(PREFIX):$(TAG)
|