From bcf271abc9ad7952b7ff9c01a8f10f61e649d2a2 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Thu, 6 Oct 2022 10:15:43 +0200 Subject: [PATCH] No need to version the client --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3aca4f2..31f9284 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ ARG MC_VERSION=RELEASE.2022-10-01T07-56-14Z # 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 # 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 +RUN wget https://dl.min.io/client/mc/release/linux-amd64/mc -O /app/code/mc && chmod +x /app/code/mc COPY env.sh start.sh /app/code/