2022-01-21 18:31:00 +00:00
|
|
|
FROM cloudron/base:3.2.0@sha256:ba1d566164a67c266782545ea9809dc611c4152e27686fd14060332dd88263ea
|
2017-01-24 06:06:51 +00:00
|
|
|
|
2021-07-08 07:20:11 +00:00
|
|
|
RUN mkdir -p /app/code
|
|
|
|
WORKDIR /app/code
|
2019-09-08 17:41:34 +00:00
|
|
|
|
2022-08-06 05:57:23 +00:00
|
|
|
ARG VERSION=RELEASE.2022-08-05T23-27-09Z
|
2022-08-06 06:00:03 +00:00
|
|
|
ARG MC_VERSION=RELEASE.2022-08-05T08-01-28Z
|
2017-01-24 06:06:51 +00:00
|
|
|
|
2022-02-06 19:31:28 +00:00
|
|
|
# sometimes here https://dl.min.io/server/minio/release/linux-amd64/archive/
|
2022-02-07 21:10:25 +00:00
|
|
|
RUN wget https://dl.min.io/server/minio/release/linux-amd64/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/client/mc/release/linux-amd64/mc.${MC_VERSION} -O /app/code/mc && chmod +x /app/code/mc
|
2017-01-24 06:06:51 +00:00
|
|
|
|
2022-04-30 22:45:21 +00:00
|
|
|
COPY env.sh start.sh /app/code/
|
2017-01-24 06:06:51 +00:00
|
|
|
|
|
|
|
CMD [ "/app/code/start.sh" ]
|