Re-org the IEC repo to adapt to actual deployment
[iec.git] / src / use_cases / seba_on_arm / src_repo / kubectl-deployer-docker / Dockerfile.arm64
1 FROM alpine:3.6
2
3 ENV KUBE_LATEST_VERSION="v1.13.0"
4
5 RUN apk add --update ca-certificates \
6     && apk add --update -t deps curl \
7     && apk add --update gettext \
8     && curl -L https://storage.googleapis.com/kubernetes-release/release/${KUBE_LATEST_VERSION}/bin/linux/arm64/kubectl -o /usr/local/bin/kubectl \
9     && chmod +x /usr/local/bin/kubectl \
10     && apk del --purge deps \
11     && rm /var/cache/apk/*