mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-17 18:25:26 +00:00
13 lines
423 B
Makefile
13 lines
423 B
Makefile
# Copyright 2019 The Kubernetes Authors.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
.PHONY: license image
|
|
|
|
license:
|
|
(which $(GOPATH)/bin/addlicense || go get github.com/google/addlicense)
|
|
$(GOPATH)/bin/addlicense -y 2019 -c "The Kubernetes Authors." -f LICENSE_TEMPLATE .
|
|
|
|
image:
|
|
docker build image -t gcr.io/kustomize-functions/example-cockroachdb:v0.1.0
|
|
docker push gcr.io/kustomize-functions/example-cockroachdb:v0.1.0
|