File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,12 @@ FROM alpine/helm:3.11.3
2
2
3
3
LABEL org.opencontainers.image.source https://github.com/project-codeflare/codeflare-cli
4
4
5
- RUN if [[ $(uname -m) = aarch64 ]]; then KUBECTL_ARCH=arm64; else KUBECTL_ARCH=amd64; fi; curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/$KUBECTL_ARCH/kubectl" && \
5
+ RUN if [[ $(uname -m) = aarch64 ]]; then KUBECTL_ARCH=arm64; else KUBECTL_ARCH=amd64; fi; \
6
+ curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/$KUBECTL_ARCH/kubectl" && \
6
7
chmod a+rx kubectl && \
7
- mv kubectl /usr/local/bin
8
+ mv kubectl /usr/local/bin && \
9
+ wget -q -O /tmp/websocat https://github.com/vi/websocat/releases/download/v1.11.0/websocat.$(uname -m)-unknown-linux-musl && \
10
+ chmod a+rx /tmp/websocat && \
11
+ mv /tmp/websocat /usr/local/bin
8
12
9
13
ENTRYPOINT bash
You can’t perform that action at this time.
0 commit comments