2023-05-25 21:19:09 -04:00
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.8
2021-06-18 12:11:55 -04:00
ARG TARGETARCH
ARG RELEASE
LABEL name = "MinIO" \
vendor = "MinIO Inc <dev@min.io>" \
maintainer = "MinIO Inc <dev@min.io>" \
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 \
2021-07-14 19:55:59 -04:00
MINIO_UPDATE_MINISIGN_PUBKEY = "RWTx5Zr1tiHQLwG9keckT0c45M3AGeHD6IvimQHpyRywVWGbP1aVSGav" \
2021-09-10 01:19:11 -04:00
MINIO_CONFIG_ENV_FILE = config.env \
2021-11-22 19:48:05 -05:00
PATH = /opt/bin:$PATH
2021-06-18 12:11:55 -04:00
COPY dockerscripts/verify-minio.sh /usr/bin/verify-minio.sh
COPY dockerscripts/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh
COPY CREDITS /licenses/CREDITS
COPY LICENSE /licenses/LICENSE
RUN \
2021-11-02 17:15:46 -04:00
microdnf clean all && \
2021-06-18 12:11:55 -04:00
microdnf update --nodocs && \
2021-11-02 17:24:42 -04:00
microdnf install curl ca-certificates shadow-utils util-linux --nodocs && \
2021-06-18 12:11:55 -04:00
rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm && \
microdnf install minisign --nodocs && \
2021-09-10 01:19:11 -04:00
mkdir -p /opt/bin && chmod -R 777 /opt/bin && \
curl -s -q https://dl.min.io/server/minio/release/linux-${ TARGETARCH } /archive/minio.${ RELEASE } .fips -o /opt/bin/minio && \
curl -s -q https://dl.min.io/server/minio/release/linux-${ TARGETARCH } /archive/minio.${ RELEASE } .fips.sha256sum -o /opt/bin/minio.sha256sum && \
curl -s -q https://dl.min.io/server/minio/release/linux-${ TARGETARCH } /archive/minio.${ RELEASE } .fips.minisig -o /opt/bin/minio.minisig && \
2021-06-18 12:11:55 -04:00
microdnf clean all && \
2021-09-10 01:19:11 -04:00
chmod +x /opt/bin/minio && \
2021-06-18 12:11:55 -04:00
chmod +x /usr/bin/docker-entrypoint.sh && \
chmod +x /usr/bin/verify-minio.sh && \
2021-11-02 17:15:46 -04:00
/usr/bin/verify-minio.sh && \
microdnf clean all
2021-06-18 12:11:55 -04:00
EXPOSE 9000
ENTRYPOINT [ "/usr/bin/docker-entrypoint.sh" ]
VOLUME [ "/data" ]
CMD [ "minio" ]