mirror of
https://github.com/minio/minio
synced 2024-11-05 17:34:01 +00:00
41d4d650e4
also add additional packages such as 'iproute', 'iputils' for `ping` and `ip addr` commands.
17 lines
306 B
Text
17 lines
306 B
Text
FROM minio/minio:edge
|
|
|
|
LABEL maintainer="MinIO Inc <dev@min.io>"
|
|
|
|
COPY minio /usr/bin/
|
|
COPY dockerscripts/docker-entrypoint.sh /usr/bin/
|
|
|
|
RUN chmod +x /usr/bin/minio && \
|
|
chmod +x /usr/bin/docker-entrypoint.sh
|
|
|
|
EXPOSE 9000
|
|
|
|
ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
|
|
|
|
VOLUME ["/data"]
|
|
|
|
CMD ["minio"]
|