From 8bfac72b101d8c0ad77d7bb416ba7e36b7ae51f3 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Sun, 6 Oct 2024 13:45:54 +0000 Subject: [PATCH] Update renovate config --- Dockerfile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index c5f971a..640b6bb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,13 +3,12 @@ FROM cloudron/base:4.2.0@sha256:46da2fffb36353ef714f97ae8e962bd2c212ca091108d768 RUN mkdir -p /app/code WORKDIR /app/code -# renovate: datasource=github-releases packageName=minio/minio extractVersion=^(?.+)$ versioning=regex:^RELEASE\.(?\d{4})-(?\d{2})-(?\d{2})T(?.+) -ARG VERSION=RELEASE.2024-10-02T17-50-41Z +# renovate: datasource=github-releases depName=minio/minio versioning=regex:^RELEASE\.(?\d{4})-(?\d{2})-(?\d{2})T(?.+) +ARG MINIO_VERSION=RELEASE.2024-10-02T17-50-41Z -# sometimes here https://dl.min.io/server/minio/release/linux-amd64/archive/ -# RUN wget https://dl.min.io/server/minio/release/linux-amd64/minio.${VERSION} -O /app/code/minio && chmod +x /app/code/minio -RUN wget https://dl.min.io/server/minio/release/linux-amd64/archive/minio.${VERSION} -O /app/code/minio && chmod +x /app/code/minio -# https://dl.min.io/client/mc/release/linux-amd64/ +RUN wget https://dl.min.io/server/minio/release/linux-amd64/archive/minio.${MINIO_VERSION} -O /app/code/minio && chmod +x /app/code/minio + +# Latest CLI RUN wget https://dl.min.io/client/mc/release/linux-amd64/mc -O /app/code/mc && chmod +x /app/code/mc COPY env.sh.template start.sh /app/code/