added Dockerfile in order have all tools for testing

This commit is contained in:
Sebastian Wendel 2022-11-29 16:20:53 +01:00
parent 01d2ebe23c
commit 6270f7492b
No known key found for this signature in database
GPG key ID: 1422B7DF78144640

10
Dockerfile Normal file
View file

@ -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 [""]