Remove nonexistent load flag from docker build commands (#9122)

This commit is contained in:
João Henri 2023-01-10 12:47:26 -03:00 committed by GitHub
parent e7bee5308e
commit 54e2739282
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -201,7 +201,6 @@ dev-env-stop: ## Deletes local Kubernetes cluster created by kind.
live-docs: ## Build and launch a local copy of the documentation website in http://localhost:8000 live-docs: ## Build and launch a local copy of the documentation website in http://localhost:8000
@docker build ${PLATFORM_FLAG} ${PLATFORM} \ @docker build ${PLATFORM_FLAG} ${PLATFORM} \
--no-cache \ --no-cache \
$(MAC_DOCKER_FLAGS) \
-t ingress-nginx-docs .github/actions/mkdocs -t ingress-nginx-docs .github/actions/mkdocs
@docker run ${PLATFORM_FLAG} ${PLATFORM} --rm -it \ @docker run ${PLATFORM_FLAG} ${PLATFORM} --rm -it \
-p 8000:8000 \ -p 8000:8000 \
@ -241,6 +240,7 @@ release: ensure-buildx clean
docker buildx build \ docker buildx build \
--no-cache \ --no-cache \
$(MAC_DOCKER_FLAGS) \
--push \ --push \
--pull \ --pull \
--progress plain \ --progress plain \
@ -253,6 +253,7 @@ release: ensure-buildx clean
docker buildx build \ docker buildx build \
--no-cache \ --no-cache \
$(MAC_DOCKER_FLAGS) \
--push \ --push \
--pull \ --pull \
--progress plain \ --progress plain \