File tree 1 file changed +2
-3
lines changed
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -17,13 +17,12 @@ USER root
17
17
18
18
COPY --from=gotty-build /gotty /usr/bin/
19
19
RUN ARCH=$(uname -m) && case $ARCH in aarch64) ARCH="arm64" ;; x86_64) ARCH="amd64" ;; esac && echo "ARCH: " $ARCH && \
20
- apk update && apk upgrade && apk add --update --no-cache bash bash-completion curl git wget openssl iputils busybox-extras vim && sed -i "s/nobody:\/ /nobody:\/ nonexistent/g" /etc/passwd && \
20
+ apk update && apk upgrade && apk add --update --no-cache bash bash-completion curl git wget openssl iputils busybox-extras vim fzf && sed -i "s/nobody:\/ /nobody:\/ nonexistent/g" /etc/passwd && \
21
21
curl -sLf https://storage.googleapis.com/kubernetes-release/release/v1.30.3/bin/linux/${ARCH}/kubectl > /usr/bin/kubectl && chmod +x /usr/bin/kubectl && \
22
22
git clone --branch master --depth 1 https://github.com/ahmetb/kubectl-aliases /opt/kubectl-aliases && chmod -R 755 /opt/kubectl-aliases && \
23
- git clone --branch 0.35.1 --depth 1 https://github.com/junegunn/fzf /opt/fzf && chmod -R 755 /opt/fzf && /opt/fzf/install && ln -s /opt/fzf/bin/fzf /usr/local/bin/fzf && \
24
23
cd /tmp/ && wget https://github.com/derailed/k9s/releases/download/v0.27.3/k9s_Linux_${ARCH}.tar.gz && tar -xvf k9s_Linux_${ARCH}.tar.gz && chmod +x k9s && mv k9s /usr/bin && \
25
24
ARCH=$(uname -m) && case $ARCH in aarch64) ARCH="arm64" ;; x86_64) ARCH="x86_64" ;; esac && echo "ARCH: " $ARCH && \
26
- KUBECTX_VERSION=v0.9.4 && wget https://github.com/ahmetb/kubectx/releases/download/${KUBECTX_VERSION}/kubens_${KUBECTX_VERSION}_linux_${ARCH}.tar.gz && tar -xvf kubens_${KUBECTX_VERSION}_linux_${ARCH}.tar.gz && chmod +x kubens && mv kubens /usr/bin && \
25
+ KUBECTX_VERSION=v0.9.5 && wget https://github.com/ahmetb/kubectx/releases/download/${KUBECTX_VERSION}/kubens_${KUBECTX_VERSION}_linux_${ARCH}.tar.gz && tar -xvf kubens_${KUBECTX_VERSION}_linux_${ARCH}.tar.gz && chmod +x kubens && mv kubens /usr/bin && \
27
26
wget https://github.com/ahmetb/kubectx/releases/download/${KUBECTX_VERSION}/kubectx_${KUBECTX_VERSION}_linux_${ARCH}.tar.gz && tar -xvf kubectx_${KUBECTX_VERSION}_linux_${ARCH}.tar.gz && chmod +x kubectx && mv kubectx /usr/bin && \
28
27
curl -L https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash && \
29
28
chmod +x /usr/bin/gotty && chmod 555 /bin/busybox && \
You can’t perform that action at this time.
0 commit comments