From 32dd8d6c4d2a5999a873ea22b852b47dc6953d11 Mon Sep 17 00:00:00 2001 From: Sujeily Fonseca Date: Fri, 24 Jun 2022 18:47:01 -0400 Subject: [PATCH] feat: Update image building in Makefile Updated the docker build command used in the Makefile. Contributes to: automation-saas/native-AWS#1972 Signed-off-by: Sujeily Fonseca --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b7a6dc33ba2a..ba577cc8ed34 100644 --- a/Makefile +++ b/Makefile @@ -562,7 +562,7 @@ list: # Build the docker image .PHONY: docker-build docker-build: - docker build -t ${IMG} . + DOCKER_BUILDKIT=1 docker build -t ${IMG} . # Push the docker image .PHONY: docker-push