1
0
Fork 0
mirror of https://github.com/honestbee/drone-kubernetes.git synced 2025-05-12 22:03:17 +00:00
drone-kubernetes/Dockerfile
2018-01-10 17:29:56 +05:30

7 lines
378 B
Docker

FROM alpine:3.4
RUN apk --no-cache add curl ca-certificates bash && \
curl -Lo /usr/local/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl && \
chmod +x /usr/local/bin/kubectl
COPY update.sh /bin/
ENTRYPOINT ["/bin/bash"]
CMD ["/bin/update.sh"]