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.
14 lines
282 B
14 lines
282 B
5 years ago
|
FROM armhf/alpine
|
||
|
|
||
|
RUN apk update && apk upgrade && \
|
||
|
apk add curl
|
||
|
|
||
|
RUN curl --location --remote-name https://dl.min.io/server/minio/release/linux-arm/minio && \
|
||
|
chmod +x minio && \
|
||
|
mv minio /usr/sbin
|
||
|
|
||
|
EXPOSE 9000
|
||
|
VOLUME /data
|
||
|
|
||
|
ENTRYPOINT [ "minio", "server", "/data" ]
|