1
0
Fork 0
mirror of https://github.com/honestbee/drone-kubernetes.git synced 2025-05-29 20:03:18 +00:00

First version

This commit is contained in:
Charles Martinot 2017-01-13 18:07:48 +08:00
parent 4fb115dcd7
commit 4490e740d3
3 changed files with 49 additions and 2 deletions

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM alpine
RUN apk -Uuv add curl ca-certificates
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
RUN chmod +x ./kubectl
RUN mv ./kubectl /usr/local/bin/kubectl
ADD update.sh /bin/
RUN chmod +x /bin/update.sh
CMD /bin/update.sh