From cf3abcc7d6f198e27752bce4f2c6b79223a247d3 Mon Sep 17 00:00:00 2001 From: Rolf Ahrenberg Date: Sat, 11 Sep 2021 11:54:33 +0300 Subject: [PATCH] Reorder docker build parameters --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e2e7be36..b0ec837f 100644 --- a/Makefile +++ b/Makefile @@ -129,8 +129,8 @@ generate: controller-gen # Build the docker image docker-build: - docker build . -t ${NAME}:${VERSION} - docker build runner -t ${RUNNER_NAME}:${RUNNER_TAG} --build-arg TARGETPLATFORM=$(shell arch) + docker build -t ${NAME}:${VERSION} . + docker build -t ${RUNNER_NAME}:${RUNNER_TAG} --build-arg TARGETPLATFORM=$(shell arch) runner docker-buildx: export DOCKER_CLI_EXPERIMENTAL=enabled