We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 117c1cb commit 3e9e626Copy full SHA for 3e9e626
.tools/Dockerfile
@@ -6,7 +6,7 @@ LABEL org.opencontainers.image.source="https://github.com/${AUTHORS}/docker-sele
6
7
ARG KUBECTL_VERSION
8
9
-RUN apt-get update && apt-get install -y curl && \
+RUN apt-get update && apt-get install -y bash curl jq && \
10
ARCH=$(dpkg --print-architecture) && \
11
VERSION=${KUBECTL_VERSION:-$(curl -L -s https://dl.k8s.io/release/stable.txt)} && \
12
curl -LO "https://dl.k8s.io/release/${VERSION}/bin/linux/${ARCH}/kubectl" && \
@@ -22,4 +22,4 @@ USER kubectl
22
23
RUN kubectl version --client
24
25
-ENTRYPOINT ["kubectl"]
+CMD ["bash"]
0 commit comments