From 0048350a1d79232059fefafcbf7c304721cb80d3 Mon Sep 17 00:00:00 2001 From: a1ef Date: Thu, 14 Nov 2024 16:49:13 +0300 Subject: [PATCH] Archivate utils dir --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 16e920f..7e3236c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,5 @@ FROM public.ecr.aws/docker/library/busybox -RUN wget https://get.helm.sh/helm-v3.10.3-linux-amd64.tar.gz -O- | tar xz && rm linux-amd64/[LR]* -RUN wget https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 -O /linux-amd64/jq && chmod +x /linux-amd64/jq -RUN wget https://github.com/mikefarah/yq/releases/download/v4.30.6/yq_linux_amd64 -O /linux-amd64/yq && chmod +x /linux-amd64/yq +RUN wget https://get.helm.sh/helm-v3.10.3-linux-amd64.tar.gz -O- | tar xz && rm linux-amd64/[LR]* && mv /linux-amd64 /tools +RUN wget https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 -O /tools/jq && chmod +x /tools/jq +RUN wget https://github.com/mikefarah/yq/releases/download/v4.30.6/yq_linux_amd64 -O /tools/yq && chmod +x /tools/yq +RUN tar czf tools.tar.gz /tools