1
0
Fork 0
mirror of https://github.com/honestbee/drone-kubernetes.git synced 2025-05-27 18:43:18 +00:00
drone-kubernetes/Dockerfile
2019-02-12 19:24:50 -08:00

7 lines
371 B
Docker

FROM alpine:latest
RUN apk --no-cache add curl ca-certificates bash
RUN 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
RUN chmod +x /usr/local/bin/kubectl
COPY update.sh /bin/
ENTRYPOINT ["/bin/bash"]
CMD ["/bin/update.sh"]