Skip to content

Commit

Permalink
Add Dockerfile based on Red Hat UBI (#372)
Browse files Browse the repository at this point in the history
  • Loading branch information
nitisht authored Nov 27, 2020
1 parent ed92b1a commit 804b782
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Dockerfile.release.ubi
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.3

LABEL name="MinIO" \
vendor="MinIO Inc <dev@min.io>" \
maintainer="MinIO Inc <dev@min.io>" \
version="v3.0.29" \
release="v3.0.29" \
summary="MinIO Operator brings native support for MinIO, Console, and Encryption to Kubernetes." \
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."

COPY CREDITS /licenses/CREDITS
COPY LICENSE /licenses/LICENSE
COPY ca-certificates.crt /etc/ssl/certs/
COPY minio-operator /minio-operator

CMD ["/minio-operator"]

0 comments on commit 804b782

Please sign in to comment.