We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6dc0da commit ef9b2d2Copy full SHA for ef9b2d2
Makefile
@@ -71,7 +71,7 @@ deploy: manifests ## Deploy controller in the configured Kubernetes cluster in ~
71
72
.PHONY: docker-build
73
docker-build: ## Build the docker image
74
- ${DOCKER} build . -t ${IMG}
+ docker image inspect ${IMG} && echo "docker image ${IMG} already built" || ${DOCKER} build . -t ${IMG}
75
@echo "updating kustomize image patch file for manager resource"
76
sed -i'' -e 's@image: .*@image: '"${IMG}"'@' ./config/default/manager_image_patch.yaml
77
0 commit comments