Minio 2020-06-18T02-23-35Z

This commit is contained in:
Adrien le Maire 2020-10-29 15:20:05 +00:00
parent ba0a7c2eec
commit da80c5f964
2 changed files with 7 additions and 5 deletions

View File

@ -9,15 +9,17 @@ ENV MINIO_ACCESS_KEY_FILE=access_key \
EXPOSE 9000
COPY entrypoint.sh /usr/bin/docker-entrypoint.sh
RUN \
apk add --no-cache ca-certificates 'curl>7.61.0' 'su-exec>=0.2' && \
echo 'hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4' >> /etc/nsswitch.conf
ARG VERSION
ARG TARGETARCH
ENV VERSION $VERSION
ADD https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${VERSION} /usr/bin/minio
RUN \
apk add --no-cache ca-certificates 'curl>7.61.0' 'su-exec>=0.2' && \
echo 'hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4' >> /etc/nsswitch.conf && \
chmod +x /usr/bin/minio
RUN chmod +x /usr/bin/minio
ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]

View File

@ -1 +1 @@
VERSION=RELEASE.2020-09-02T18-19-50Z
VERSION=RELEASE.2020-06-18T02-23-35Z