From 8a9ff2b33190e6b15e93d8083be51b55804b671e Mon Sep 17 00:00:00 2001 From: Harshavardhana Date: Sat, 5 Jun 2021 17:15:19 -0700 Subject: [PATCH] build edge off from latest release remove complicated docker files just use one for all situations, if need to build master build locally using Dockerfile.dev fixes #12450 --- Dockerfile | 36 +----------------------------------- 1 file changed, 1 insertion(+), 35 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0ed01f307..5dd50b029 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,38 +1,4 @@ -FROM golang:1.16-alpine as builder - -LABEL maintainer="MinIO Inc " - -ENV GOPATH /go -ENV CGO_ENABLED 0 -ENV GO111MODULE on - -COPY . /go/minio/ -COPY browser /go/minio/browser - -WORKDIR /go/minio/ - -RUN apk add --no-cache git && go install -v -ldflags "$(go run buildscripts/gen-ldflags.go)" - -FROM registry.access.redhat.com/ubi8/ubi-minimal:8.3 - -ENV MINIO_ACCESS_KEY_FILE=access_key \ - MINIO_SECRET_KEY_FILE=secret_key \ - MINIO_ROOT_USER_FILE=access_key \ - MINIO_ROOT_PASSWORD_FILE=secret_key \ - MINIO_KMS_SECRET_KEY_FILE=kms_master_key \ - MINIO_UPDATE_MINISIGN_PUBKEY="RWTx5Zr1tiHQLwG9keckT0c45M3AGeHD6IvimQHpyRywVWGbP1aVSGav" - -EXPOSE 9000 - -COPY --from=builder /go/bin/minio /usr/bin/minio -COPY --from=builder /go/minio/CREDITS /licenses/CREDITS -COPY --from=builder /go/minio/LICENSE /licenses/LICENSE -COPY --from=builder /go/minio/dockerscripts/docker-entrypoint.sh /usr/bin/ - -RUN \ - microdnf update --nodocs && \ - microdnf install curl ca-certificates shadow-utils util-linux iproute iputils --nodocs && \ - microdnf clean all +FROM minio/minio:latest ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]