From d03b244fcde01b9c537c953b1042216d07635c45 Mon Sep 17 00:00:00 2001 From: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com> Date: Thu, 12 Jan 2023 01:39:12 -0800 Subject: [PATCH] Remove `checks` target from `docker` target (#16399) Signed-off-by: Daniel Valdivia <18384552+dvaldivia@users.noreply.github.com> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bb4b6d934..fdde3b274 100644 --- a/Makefile +++ b/Makefile @@ -136,7 +136,7 @@ docker-hotfix: hotfix-push checks ## builds minio docker container with hotfix t @echo "Building minio docker image '$(TAG)'" @docker build -q --no-cache -t $(TAG) --build-arg RELEASE=$(VERSION) . -f Dockerfile.hotfix -docker: build checks ## builds minio docker container +docker: build ## builds minio docker container @echo "Building minio docker image '$(TAG)'" @docker build -q --no-cache -t $(TAG) . -f Dockerfile