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.
22 lines
596 B
22 lines
596 B
FROM resin/armhf-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-arm/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"]
|
|
|