10 lines
180 B
Makefile
10 lines
180 B
Makefile
all: push
|
|
|
|
TAG = 0.1
|
|
|
|
image:
|
|
sudo docker build -t gcr.io/google_containers/mounttest-user:$(TAG) .
|
|
|
|
push: image
|
|
gcloud docker push gcr.io/google_containers/mounttest-user:$(TAG)
|