|
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.8 |
|
|
|
ARG TARGETARCH=amd64 |
|
|
|
ARG RELEASE=RELEASE.2023-06-02T23-17-26Z |
|
|
|
LABEL name="MinIO" \ |
|
vendor="MinIO Inc <[email protected]>" \ |
|
maintainer="MinIO Inc <[email protected]>" \ |
|
version="${RELEASE}" \ |
|
release="${RELEASE}" \ |
|
summary="MinIO is a High Performance Object Storage, API compatible with Amazon S3 cloud storage service." \ |
|
description="MinIO object storage is fundamentally different. Designed for performance and the S3 API, it is 100% open-source. MinIO is ideal for large, private cloud environments with stringent security requirements and delivers mission-critical availability across a diverse range of workloads." |
|
|
|
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" \ |
|
MINIO_CONFIG_ENV_FILE=config.env \ |
|
PATH=/opt/bin:$PATH |
|
|
|
COPY verify-minio.sh /usr/bin/verify-minio.sh |
|
COPY docker-entrypoint.sh /usr/bin/docker-entrypoint.sh |
|
COPY CREDITS /licenses/CREDITS |
|
COPY LICENSE /licenses/LICENSE |
|
|
|
RUN \ |
|
microdnf clean all && \ |
|
microdnf update --nodocs && \ |
|
rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm && \ |
|
microdnf install curl ca-certificates shadow-utils util-linux gzip lsof tar net-tools iproute iputils jq minisign --nodocs && \ |
|
mkdir -p /opt/bin && chmod -R 777 /opt/bin && \ |
|
curl -s -q https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${RELEASE} -o /opt/bin/minio && \ |
|
curl -s -q https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${RELEASE}.sha256sum -o /opt/bin/minio.sha256sum && \ |
|
curl -s -q https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${RELEASE}.minisig -o /opt/bin/minio.minisig && \ |
|
curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc -o /opt/bin/mc && \ |
|
gzip /opt/bin/mc && \ |
|
microdnf clean all && \ |
|
chmod +x /opt/bin/minio && \ |
|
chmod +x /usr/bin/docker-entrypoint.sh && \ |
|
chmod +x /usr/bin/verify-minio.sh && \ |
|
/usr/bin/verify-minio.sh && \ |
|
microdnf clean all |
|
|
|
EXPOSE 7860 |
|
EXPOSE 9001 |
|
|
|
ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"] |
|
|
|
VOLUME ["/data"] |
|
|
|
CMD ["minio", "server", "/tmp", "--address", ":7860", "--console-address", ":9001"] |