Skip to content

Commit fff3e8f

Browse files
authored
fix docker-build make target (#100)
<!--- Note to EXTERNAL Contributors --> <!-- Thanks for opening a PR! If it is a significant code change, please **make sure there is an open issue** for this. We work best with you when we have accepted the idea first before you code. --> <!--- For ALL Contributors 👇 --> ## What was changed fix docker-build make target ## Why? test is no longer a real make target, and we have tests running in CI, so its not necessary to run tests before docker build ## Checklist <!--- add/delete as needed ---> 1. Closes <!-- add issue number here --> 2. How was this tested: <!--- Please describe how you tested your changes/how we can test them --> 3. Any docs updates needed? <!--- update README if applicable or point out where to update docs.temporal.io -->
1 parent ad056be commit fff3e8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ run: manifests generate fmt vet ## Run a controller from your host.
221221
# (i.e. docker build --platform linux/arm64 ). However, you must enable docker buildKit for it.
222222
# More info: https://docs.docker.com/develop/develop-images/build_enhancements/
223223
.PHONY: docker-build
224-
docker-build: test ## Build docker image with the manager.
224+
docker-build: ## Build docker image with the manager.
225225
$(CONTAINER_TOOL) build -t ${IMG} .
226226

227227
.PHONY: docker-push

0 commit comments

Comments
 (0)