feat: add minio support
All checks were successful
build-terraform-alpine / build-image (push) Successful in 1m8s

This commit is contained in:
2025-01-24 02:38:06 +00:00
parent b4d872bf43
commit 7e4d48622c

View File

@@ -4,7 +4,11 @@ ARG PRODUCT
ARG VERSION ARG VERSION
ARG ARCH 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 && \ RUN apk add --update --virtual .deps --no-cache gnupg && \
cd /tmp && \ cd /tmp && \