8 lines
258 B
Docker
8 lines
258 B
Docker
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
|
|
|