This commit improves and updates the docker file to the UBI 9 base image. Signed-off-by: Andreas Auernhammer <github@aead.dev>
28 lines
1.1 KiB
Docker
28 lines
1.1 KiB
Docker
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.2 as build
|
|
|
|
RUN microdnf update --nodocs && microdnf install ca-certificates --nodocs
|
|
|
|
FROM registry.access.redhat.com/ubi9/ubi-micro:9.2
|
|
|
|
ARG TAG
|
|
|
|
LABEL name="MinIO" \
|
|
vendor="MinIO Inc <dev@min.io>" \
|
|
maintainer="MinIO Inc <dev@min.io>" \
|
|
version="${TAG}" \
|
|
release="${TAG}" \
|
|
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."
|
|
|
|
# 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 LICENSE /LICENSE
|
|
COPY CREDITS /CREDITS
|
|
COPY console /console
|
|
|
|
EXPOSE 9090
|
|
|
|
ENTRYPOINT ["/console"]
|