Skip to content

Commit

Permalink
Change docker-build and docker-push commands to respect CONTAINER_TOOL
Browse files Browse the repository at this point in the history
  • Loading branch information
LincolnBryant committed Dec 10, 2024
1 parent 5079041 commit 98e02c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,11 @@ generate: controller-gen
# Build the docker image
docker-build: # test
echo ${IMG}
docker build . -t ${IMG}
${CONTAINER_TOOL} build . -t ${IMG}

# Push the docker image
docker-push:
docker push ${IMG}
${CONTAINER_TOOL} push ${IMG}

# Generate bundle manifests and metadata, then validate generated files.
bundle: manifests
Expand Down

0 comments on commit 98e02c9

Please sign in to comment.