From 7e4d48622c1fd27362f79ed340f5e8787a8ea8de Mon Sep 17 00:00:00 2001 From: Jordan Walster Date: Fri, 24 Jan 2025 02:38:06 +0000 Subject: [PATCH] feat: add minio support --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3354bf1..e9fc949 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,11 @@ ARG PRODUCT ARG VERSION ARG ARCH -RUN apk add --no-cache git npm bash +RUN apk add --no-cache git npm bash curl + +RUN curl https://dl.min.io/client/mc/release/linux-arm64/mc --create-dirs -o ~/minio-binaries/mc +RUN chmod +x $HOME/minio-binaries/mc +RUN export PATH=$PATH:$HOME/minio-binaries/ RUN apk add --update --virtual .deps --no-cache gnupg && \ cd /tmp && \