2023-03-02 20:42:28 -08:00
FROM --platform=linux/amd64 registry.access.redhat.com/ubi8/ubi-minimal:8.7 as build
2020-07-30 15:41:20 -07:00
2023-03-02 20:42:28 -08:00
RUN microdnf update --nodocs && microdnf install ca-certificates --nodocs
RUN curl -s -q https://raw.githubusercontent.com/minio/kes/master/LICENSE -o LICENSE
RUN curl -s -q https://raw.githubusercontent.com/minio/kes/master/CREDITS -o CREDITS
2021-06-29 11:21:46 -07:00
2023-03-02 20:42:28 -08:00
FROM registry.access.redhat.com/ubi8/ubi-micro:8.7
# On RHEL the certificate bundle is located at:
# - /etc/pki/tls/certs/ca-bundle.crt (RHEL 6)
# - /etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem (RHEL 7)
COPY --from= build /etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem /etc/pki/ca-trust/extracted/pem/
COPY --from= build LICENSE /LICENSE
COPY --from= build CREDITS /CREDITS
2020-07-30 15:41:20 -07:00
2020-12-08 00:23:24 +05:30
LABEL name = "MinIO" \
vendor = "MinIO Inc <dev@min.io>" \
maintainer = "MinIO Inc <dev@min.io>" \
2021-07-06 12:08:26 -07:00
version = " ${ TAG } " \
release = " ${ TAG } " \
2020-12-08 00:23:24 +05:30
summary = "A graphical user interface for MinIO" \
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."
2020-04-06 11:27:43 -07:00
EXPOSE 9090
2020-07-26 00:34:17 -07:00
COPY console /console
2020-04-06 11:27:43 -07:00
2020-07-26 00:34:17 -07:00
ENTRYPOINT [ "/console" ]