Remove nonexistent load flag from docker build commands (#9122)
This commit is contained in:
parent
e7bee5308e
commit
54e2739282
1 changed files with 2 additions and 1 deletions
3
Makefile
3
Makefile
|
@ -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 \
|
||||||
|
|
Loading…
Reference in a new issue