2023-09-29 06:33:22 +05:30
|
|
|
FROM cloudron/base:4.2.0@sha256:46da2fffb36353ef714f97ae8e962bd2c212ca091108d768ba473078319a47f4
|
2017-01-24 07:06:51 +01:00
|
|
|
|
2021-07-08 09:20:11 +02:00
|
|
|
RUN mkdir -p /app/code
|
|
|
|
WORKDIR /app/code
|
2019-09-08 10:41:34 -07:00
|
|
|
|
2024-10-06 13:45:54 +00:00
|
|
|
# renovate: datasource=github-releases depName=minio/minio versioning=regex:^RELEASE\.(?<major>\d{4})-(?<minor>\d{2})-(?<patch>\d{2})T(?<build>.+)
|
2024-11-08 00:19:19 +00:00
|
|
|
ARG MINIO_VERSION=RELEASE.2024-11-07T00-52-20Z
|
2017-01-24 07:06:51 +01:00
|
|
|
|
2024-10-06 13:45:54 +00:00
|
|
|
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
|
2022-10-06 10:15:43 +02:00
|
|
|
RUN wget https://dl.min.io/client/mc/release/linux-amd64/mc -O /app/code/mc && chmod +x /app/code/mc
|
2017-01-24 07:06:51 +01:00
|
|
|
|
2024-02-20 11:02:56 +01:00
|
|
|
COPY env.sh.template start.sh /app/code/
|
2017-01-24 07:06:51 +01:00
|
|
|
|
|
|
|
CMD [ "/app/code/start.sh" ]
|