mirror of
https://github.com/minio/mc
synced 2026-08-29 14:37:42 -04:00
10 lines
235 B
Text
10 lines
235 B
Text
FROM alpine:3.12
|
|
|
|
MAINTAINER MinIO Inc <dev@min.io>
|
|
|
|
COPY mc /usr/bin/mc
|
|
|
|
RUN apk add --no-cache ca-certificates 'curl>7.61.0' && \
|
|
curl -s -q -O https://raw.githubusercontent.com/minio/minio/release/CREDITS
|
|
|
|
ENTRYPOINT ["mc"]
|