mirror of
https://github.com/minio/mc.git
synced 2025-04-18 10:04:03 +03:00
15 lines
339 B
Docker
15 lines
339 B
Docker
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.8
|
|
|
|
LABEL maintainer="MinIO Inc <dev@min.io>"
|
|
|
|
COPY mc /usr/bin/
|
|
COPY CREDITS /licenses/CREDITS
|
|
COPY LICENSE /licenses/LICENSE
|
|
|
|
RUN \
|
|
microdnf update --nodocs --assumeyes && \
|
|
microdnf install ca-certificates --nodocs --assumeyes && \
|
|
microdnf clean all
|
|
|
|
ENTRYPOINT ["mc"]
|