mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-11-23 12:29:01 +00:00
10 lines
188 B
Makefile
10 lines
188 B
Makefile
.PHONY: build push
|
|
|
|
TAG = 1.1
|
|
|
|
build:
|
|
docker build -t gcr.io/google_containers/fluentd-sidecar-gcp:$(TAG) .
|
|
|
|
push:
|
|
gcloud docker push gcr.io/google_containers/fluentd-sidecar-gcp:$(TAG)
|