diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..cbbe8ca --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM alpine/helm:latest + +RUN apk add --update --no-cache yamllint + +RUN set -ex; \ + curl -L "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" -o /usr/local/bin/kubectl && \ + chmod +x /usr/local/bin/kubectl + +CMD [""] +ENTRYPOINT [""]