You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
600 B
23 lines
600 B
8 years ago
|
FROM resin/aarch64-alpine:3.5
|
||
|
|
||
|
MAINTAINER Minio Inc <dev@minio.io>
|
||
|
|
||
|
RUN \
|
||
|
apk add --no-cache ca-certificates && \
|
||
|
apk add --no-cache --virtual .build-deps curl && \
|
||
|
echo 'hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4' >> /etc/nsswitch.conf && \
|
||
|
curl https://dl.minio.io/server/minio/release/linux-arm64/minio > /usr/bin/minio && \
|
||
|
chmod +x /usr/bin/minio && apk del .build-deps
|
||
|
|
||
|
EXPOSE 9000
|
||
|
|
||
|
COPY buildscripts/docker-entrypoint.sh /usr/bin/
|
||
|
|
||
|
RUN chmod +x /usr/bin/docker-entrypoint.sh
|
||
|
|
||
|
ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
|
||
|
|
||
|
VOLUME ["/export"]
|
||
|
|
||
|
CMD ["minio"]
|