Skip to content

Commit

Permalink
Archivate utils dir
Browse files Browse the repository at this point in the history
  • Loading branch information
A1EF committed Nov 14, 2024
1 parent d8ed1d7 commit 0048350
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 0048350

Please sign in to comment.