diff --git a/images/test-runner/Makefile b/images/test-runner/Makefile index 0f2b72bad4..c102f914e5 100644 --- a/images/test-runner/Makefile +++ b/images/test-runner/Makefile @@ -23,7 +23,7 @@ REGISTRY ?= local IMAGE = $(REGISTRY)/e2e-test-runner -NGINX_BASE_IMAGE ?= $(shell cat $(DIR)/../../NGINX_BASE) +NGINX_BASE_IMAGE ?= $(shell cat $(DIR)/../../NGINX_BASE || echo "/home/prow/go/src/github.com/kubernetes/ingress-nginx/NGINX_BASE") # required to enable buildx export DOCKER_CLI_EXPERIMENTAL=enabled @@ -34,6 +34,8 @@ OUTPUT= PROGRESS=plain build: ensure-buildx + echo $(NGINX_BASE_IMAGE) + pwd docker buildx build \ --platform=${PLATFORMS} $(OUTPUT) \ --progress=$(PROGRESS) \