From bc952c4156ea8776796bf27b8aa85e0a61e6e620 Mon Sep 17 00:00:00 2001 From: Moshe Immerman Date: Wed, 20 Mar 2024 11:46:08 +0200 Subject: [PATCH] chore: fix arkade install --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 15ccb6f..e8d6f38 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,14 +2,16 @@ FROM ubuntu:jammy-20240227@sha256:77906da86b60585ce12215807090eb327e7386c8fafb54 WORKDIR /app ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && \ - apt-get install -y curl unzip ca-certificates jq zip tzdata wget gnupg2 bzip2 apt-transport-https lsb-release git --no-install-recommends && \ + apt-get install -y curl unzip ca-certificates zip tzdata wget gnupg2 bzip2 apt-transport-https lsb-release git --no-install-recommends && \ apt-get clean RUN apt-get update && apt-get upgrade -y && \ rm -Rf /var/lib/apt/lists/* && \ apt-get clean -RUN curl -sLS https://get.arkade.dev | sh && arkade get kubectl stern jq yq --path /usr/bin +RUN curl -sLS https://get.arkade.dev | sh && \ + arkade get kubectl stern jq yq --path /usr/bin && \ + chmod +x /usr/bin/kubectl /usr/bin/stern /usr/bin/jq /usr/bin/yq RUN mkdir -p /etc/apt/keyrings && \ curl -sLS https://packages.microsoft.com/keys/microsoft.asc | \