forked from kubernetes-sigs/gateway-api-inference-extension
-
Notifications
You must be signed in to change notification settings - Fork 7
Broken docker build
command in Makefile
#7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
bug
Something isn't working
Comments
It would be worthwhile to see if similar constructs are in other makefiles |
elevran
added a commit
to elevran/gateway-api-inference-extension
that referenced
this issue
Apr 17, 2025
- CONTAINER_TOOL setting commented out until can be fixed correctly (Ref neuralmagic#7) - image name was missing `epp` as last element in tag Signed-off-by: Etai Lev Ran <elevran@gmail.com>
mayabar
pushed a commit
that referenced
this issue
Apr 23, 2025
- CONTAINER_TOOL setting commented out until can be fixed correctly (Ref #7) - image name was missing `epp` as last element in tag Signed-off-by: Etai Lev Ran <elevran@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What happened:
What you expected to happen:
container image builds correctly
How to reproduce it (as minimally and precisely as possible):
Building in Linux VM, only docker is installed. Run
make image-local-build
Anything else we need to know?:
Makefile seems to pick up the wrong value for CONTAINER_TOOL. It is set to
docker podman ...
as can be seen in the output above.Commenting out line 400 fixes the issue and allows the build to complete:
#CONTAINER_TOOL := $(shell command -v docker >/dev/null 2>&1 && echo docker || command -v podman >/dev/null 2>&1 && echo podman || echo "")
Environment:
kubectl version
): NAgit describe --tags --dirty --always
): latestdev
branchThe text was updated successfully, but these errors were encountered: