We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 166b295 commit 1a35ef6Copy full SHA for 1a35ef6
1 file changed
Dockerfile
@@ -17,4 +17,9 @@ RUN apk add --no-cache ca-certificates openssl
17
# processes/io
18
RUN apk add --no-cache htop atop strace iotop sysstat ltrace ncdu logrotate hdparm pciutils psmisc tree pv
19
20
+# kubectl
21
+RUN curl -LO "https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl" \
22
+ && chmod +x ./kubectl \
23
+ && mv ./kubectl /usr/local/bin/kubectl
24
+
25
CMD [ "bash" ]
0 commit comments