Skip to content

Commit

Permalink
Merge pull request #5 from aservo/kubectl
Browse files Browse the repository at this point in the history
Install kubectl
  • Loading branch information
brettaufheber authored Nov 1, 2023
2 parents d4d7ff4 + e89b0e6 commit 944356a
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,27 @@ ENV DEBIAN_FRONTEND=noninteractive
RUN \
apt-get update && \
apt-get --no-install-recommends --yes install \
apt-transport-https \
ca-certificates \
curl \
gnupg \
wget \
&& \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

RUN curl -fsSL https://pkgs.k8s.io/core:/stable:/v1.28/deb/Release.key | gpg -o /usr/share/keyrings/kubernetes-apt-keyring.gpg --dearmor
RUN echo 'deb [signed-by=/usr/share/keyrings/kubernetes-apt-keyring.gpg] https://pkgs.k8s.io/core:/stable:/v1.28/deb/ /' | tee /etc/apt/sources.list.d/kubernetes.list

RUN \
apt-get update && \
apt-get --no-install-recommends --yes install \
vim emacs-nox nano \
jq \
tar gzip bzip2 zip unzip p7zip \
openssh-client \
openssl \
gnupg \
git \
curl \
wget \
iputils-arping \
iputils-clockdiff \
iputils-ping \
Expand All @@ -34,6 +45,7 @@ RUN \
ldap-utils \
postgresql-client \
nettle-bin \
kubectl \
&& \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

0 comments on commit 944356a

Please sign in to comment.