mirror of https://github.com/minio/minio.git
simplify dockerfiles and remove duplication (#12419)
also add additional packages such as 'iproute', 'iputils' for `ping` and `ip addr` commands.
This commit is contained in:
parent
fb140c146b
commit
41d4d650e4
|
@ -2,8 +2,9 @@
|
||||||
.github
|
.github
|
||||||
docs
|
docs
|
||||||
default.etcd
|
default.etcd
|
||||||
browser
|
|
||||||
*.gz
|
*.gz
|
||||||
*.tar.gz
|
*.tar.gz
|
||||||
*.bzip2
|
*.bzip2
|
||||||
*.zip
|
*.zip
|
||||||
|
browser/node_modules
|
||||||
|
node_modules
|
|
@ -21,3 +21,4 @@ prime/
|
||||||
stage/
|
stage/
|
||||||
.sia_temp/
|
.sia_temp/
|
||||||
config.json
|
config.json
|
||||||
|
node_modules/
|
15
Dockerfile
15
Dockerfile
|
@ -6,10 +6,12 @@ ENV GOPATH /go
|
||||||
ENV CGO_ENABLED 0
|
ENV CGO_ENABLED 0
|
||||||
ENV GO111MODULE on
|
ENV GO111MODULE on
|
||||||
|
|
||||||
RUN \
|
COPY . /go/minio/
|
||||||
apk add --no-cache git && \
|
COPY browser /go/minio/browser
|
||||||
git clone https://github.com/minio/minio && cd minio && \
|
|
||||||
git checkout master && go install -v -ldflags "$(go run buildscripts/gen-ldflags.go)"
|
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
|
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.3
|
||||||
|
|
||||||
|
@ -29,9 +31,8 @@ COPY --from=builder /go/minio/dockerscripts/docker-entrypoint.sh /usr/bin/
|
||||||
|
|
||||||
RUN \
|
RUN \
|
||||||
microdnf update --nodocs && \
|
microdnf update --nodocs && \
|
||||||
microdnf install curl ca-certificates shadow-utils util-linux --nodocs && \
|
microdnf install curl ca-certificates shadow-utils util-linux iproute iputils --nodocs && \
|
||||||
microdnf clean all && \
|
microdnf clean all
|
||||||
echo 'hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4' >> /etc/nsswitch.conf
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
|
ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
|
||||||
|
|
||||||
|
|
|
@ -1,54 +1,3 @@
|
||||||
# Copyright 2020 MinIO, Inc.
|
FROM minio/minio:edge
|
||||||
#
|
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
# you may not use this file except in compliance with the License.
|
|
||||||
# You may obtain a copy of the License at
|
|
||||||
#
|
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
#
|
|
||||||
# Unless required by applicable law or agreed to in writing, software
|
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
# See the License for the specific language governing permissions and
|
|
||||||
# limitations under the License.
|
|
||||||
FROM golang:1.16-alpine as builder
|
|
||||||
|
|
||||||
LABEL maintainer="MinIO Inc <dev@min.io>"
|
|
||||||
|
|
||||||
ENV GOPATH /go
|
|
||||||
ENV CGO_ENABLED 0
|
|
||||||
ENV GO111MODULE on
|
|
||||||
|
|
||||||
RUN \
|
|
||||||
apk add --no-cache git && \
|
|
||||||
git clone https://github.com/minio/minio && cd minio && \
|
|
||||||
git checkout master && go install -v -ldflags "$(go run buildscripts/gen-ldflags.go)"
|
|
||||||
|
|
||||||
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.3
|
|
||||||
|
|
||||||
ARG TARGETARCH
|
|
||||||
|
|
||||||
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 --nodocs && \
|
|
||||||
microdnf clean all
|
|
||||||
|
|
||||||
ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
|
|
||||||
|
|
||||||
VOLUME ["/data"]
|
|
||||||
|
|
||||||
CMD ["minio", "server", "/data"]
|
CMD ["minio", "server", "/data"]
|
||||||
|
|
|
@ -1,23 +1,11 @@
|
||||||
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.3
|
FROM minio/minio:edge
|
||||||
|
|
||||||
ARG TARGETARCH
|
|
||||||
|
|
||||||
LABEL maintainer="MinIO Inc <dev@min.io>"
|
LABEL maintainer="MinIO Inc <dev@min.io>"
|
||||||
|
|
||||||
COPY dockerscripts/docker-entrypoint.sh /usr/bin/
|
|
||||||
COPY minio /usr/bin/
|
COPY minio /usr/bin/
|
||||||
|
COPY dockerscripts/docker-entrypoint.sh /usr/bin/
|
||||||
|
|
||||||
ENV MINIO_UPDATE=off \
|
RUN chmod +x /usr/bin/minio && \
|
||||||
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
|
|
||||||
|
|
||||||
RUN microdnf update --nodocs
|
|
||||||
RUN microdnf install curl ca-certificates shadow-utils util-linux --nodocs
|
|
||||||
RUN microdnf clean all && \
|
|
||||||
chmod +x /usr/bin/minio && \
|
|
||||||
chmod +x /usr/bin/docker-entrypoint.sh
|
chmod +x /usr/bin/docker-entrypoint.sh
|
||||||
|
|
||||||
EXPOSE 9000
|
EXPOSE 9000
|
||||||
|
|
|
@ -26,7 +26,7 @@ COPY LICENSE /licenses/LICENSE
|
||||||
|
|
||||||
RUN \
|
RUN \
|
||||||
microdnf update --nodocs && \
|
microdnf update --nodocs && \
|
||||||
microdnf install curl ca-certificates shadow-utils util-linux --nodocs && \
|
microdnf install curl ca-certificates shadow-utils util-linux iproute iputils --nodocs && \
|
||||||
rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm && \
|
rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm && \
|
||||||
microdnf install minisign --nodocs && \
|
microdnf install minisign --nodocs && \
|
||||||
curl -s -q https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${RELEASE} -o /usr/bin/minio && \
|
curl -s -q https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${RELEASE} -o /usr/bin/minio && \
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
**/*.swp
|
||||||
|
cover.out
|
||||||
|
*~
|
||||||
|
minio
|
||||||
|
!*/
|
||||||
|
site/
|
||||||
|
**/*.test
|
||||||
|
**/*.sublime-workspace
|
||||||
|
/.idea/
|
||||||
|
/Minio.iml
|
||||||
|
**/access.log
|
||||||
|
build
|
||||||
|
vendor/**/*.js
|
||||||
|
vendor/**/*.json
|
||||||
|
.DS_Store
|
||||||
|
*.syso
|
||||||
|
coverage.txt
|
||||||
|
node_modules
|
Loading…
Reference in New Issue