Skip to content

Commit 726bfe6

Browse files
authored
Add Dockerfile based on Red Hat UBI (#453)
1 parent e47a57a commit 726bfe6

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Dockerfile.release.ubi

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.3
2+
3+
COPY CREDITS /licenses/CREDITS
4+
COPY LICENSE /licenses/LICENSE
5+
6+
LABEL name="MinIO" \
7+
vendor="MinIO Inc <[email protected]>" \
8+
maintainer="MinIO Inc <[email protected]>" \
9+
version="v0.4.6" \
10+
release="v0.4.6" \
11+
summary="A graphical user interface for MinIO" \
12+
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."
13+
14+
RUN \
15+
microdnf update --nodocs && \
16+
microdnf install ca-certificates --nodocs
17+
18+
EXPOSE 9090
19+
COPY console /console
20+
21+
ENTRYPOINT ["/console"]

0 commit comments

Comments
 (0)