From 40ad139c9e4f6757e75ce81078d378151de6461e Mon Sep 17 00:00:00 2001 From: John Payne <89417863+jpayne3506@users.noreply.github.com> Date: Mon, 4 Nov 2024 12:22:11 -0800 Subject: [PATCH] ci: hardcode docker container build image (#3102) Signed-off-by: Hunter Gregory <42728408+huntergregory@users.noreply.github.com> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 393a107b54..b647fa05b5 100644 --- a/Makefile +++ b/Makefile @@ -302,7 +302,7 @@ container-buildah: # util target to build container images using buildah. do not buildah push $(IMAGE_REGISTRY)/$(IMAGE):$(TAG) container-docker: # util target to build container images using docker buildx. do not invoke directly. - docker buildx create --use --platform $(PLATFORM) + docker buildx create --use --driver-opt image=mcr.microsoft.com/oss/v2/moby/buildkit:v0.16.0-2 --platform $(PLATFORM) docker buildx build \ $(BUILDX_ACTION) \ --platform $(PLATFORM) \