Initial commit

This commit is contained in:
Seán C McCord 2019-03-03 23:26:19 -05:00
commit b2b03d996e

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM alpine
ENV KUBERNETES_VERSION 1.11.7
RUN apk add --no-cache ca-certificates curl
RUN curl -L -o /usr/bin/kubectl "https://storage.googleapis.com/kubernetes-release/release/v${KUBERNETES_VERSION}/bin/linux/amd64/kubectl"
RUN chmod +x /usr/bin/kubectl