upgrade container base image to ubi-minimal:8.5 (#14231)

This commit is contained in:
Harshavardhana
2022-02-02 08:54:36 -08:00
committed by GitHub
parent d7df6bc738
commit 67d07e895c
6 changed files with 9 additions and 5 deletions

View File

@@ -106,11 +106,11 @@ docker-hotfix-push: docker-hotfix
docker-hotfix: hotfix-push checks ## builds minio docker container with hotfix tags
@echo "Building minio docker image '$(TAG)'"
@docker build -t $(TAG) --build-arg RELEASE=$(VERSION) . -f Dockerfile.hotfix
@docker build --no-cache -t $(TAG) --build-arg RELEASE=$(VERSION) . -f Dockerfile.hotfix
docker: build checks ## builds minio docker container
@echo "Building minio docker image '$(TAG)'"
@docker build -t $(TAG) . -f Dockerfile
@docker build --no-cache -t $(TAG) . -f Dockerfile
install: build ## builds minio and installs it to $GOPATH/bin.
@echo "Installing minio binary to '$(GOPATH)/bin/minio'"