| giolekva | 75b3601 | 2020-05-16 11:28:09 +0400 | [diff] [blame] | 1 | FROM arm64v8/alpine |
| 2 | |||||
| 3 | RUN apk add --no-cache curl | ||||
| 4 | |||||
| 5 | RUN curl --silent --show-error --fail --location \ | ||||
| 6 | --header "Accept: application/tar+gzip, application/x-gzip, application/octet-stream" -o /usr/bin/mc \ | ||||
| 7 | "https://dl.minio.io/client/mc/release/linux-arm64/mc" \ | ||||
| 8 | && chmod 0755 /usr/bin/mc | ||||
| 9 | CMD ["mc"] | ||||