Skip to content

Commit

Permalink
chore: fix arkade install
Browse files Browse the repository at this point in the history
  • Loading branch information
moshloop authored Mar 20, 2024
1 parent c46bc90 commit bc952c4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 | \
Expand Down

0 comments on commit bc952c4

Please sign in to comment.