From b2b03d996ef7dbf276ad9e04eeaac5ab004ba76f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=C3=A1n=20C=20McCord?= Date: Sun, 3 Mar 2019 23:26:19 -0500 Subject: [PATCH] Initial commit --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Dockerfile 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 +