Reorder docker build parameters

This commit is contained in:
Rolf Ahrenberg 2021-09-11 11:54:33 +03:00 committed by Yusuke Kuoka
parent cffc2585f9
commit cf3abcc7d6
1 changed files with 2 additions and 2 deletions

View File

@ -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