commit b2b03d996ef7dbf276ad9e04eeaac5ab004ba76f Author: Seán C McCord Date: Sun Mar 3 23:26:19 2019 -0500 Initial commit diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..93af197 --- /dev/null +++ b/Dockerfile @@ -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 +