mirror of
https://github.com/k3s-io/kubernetes.git
synced 2026-01-04 23:17:50 +00:00
10 lines
162 B
Makefile
Executable File
10 lines
162 B
Makefile
Executable File
.PHONY: build push
|
|
|
|
TAG = 1.3
|
|
|
|
build:
|
|
docker build -t gcr.io/google_containers/kibana:$(TAG) .
|
|
|
|
push:
|
|
gcloud docker push gcr.io/google_containers/kibana:$(TAG)
|