Added kubectl and yq to electriccoinco/zcash-in-a-box-runner

This commit is contained in:
Ben Wilson 2020-10-29 15:31:20 -04:00
parent 4328647cc7
commit 2ec36f4284
1 changed files with 10 additions and 1 deletions

View File

@ -18,4 +18,13 @@ RUN curl -LO https://dist.ipfs.io/go-ipfs/${GO_IPFS_VERSION}/go-ipfs_${GO_IPFS_V
&& chmod +x /usr/local/bin/rclone \
&& rm rclone-${RCLONE_VERSION}-linux-amd64.zip
RUN curl -LO https://github.com/tektoncd/cli/releases/download/v0.12.1/tkn_0.12.1_Linux_x86_64.tar.gz \
&& tar xvzf tkn_0.12.1_Linux_x86_64.tar.gz -C /usr/local/bin/ tkn
&& tar xvzf tkn_0.12.1_Linux_x86_64.tar.gz -C /usr/local/bin/ tkn
# Kubectl
RUN curl -L "https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl" \
-o /usr/local/bin/kubectl \
&& chmod +x /usr/local/bin/kubectl
# yq
ARG YQ_VERSION=3.4.1
RUN curl -L https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64 \
-o /usr/local/bin/yq \
&& chmod +x /usr/local/bin/yq