Initial version

This commit is contained in:
Knut Ahlers 2022-12-31 16:15:31 +01:00
commit 7e348b91ac
Signed by: luzifer
GPG Key ID: D91C3E91E4CAD6F5
2 changed files with 13 additions and 0 deletions

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM alpine
ARG KUBECTL_VERSION=v1.26.0
RUN set -ex \
&& apk --no-cache add \
curl \
&& curl -sSfL -o /usr/local/bin/kubectl "https://dl.k8s.io/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl" \
&& chmod 0755 /usr/local/bin/kubectl

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# luzifer-docker / kubectl
Simple alpine image with `kubectl` and `curl` installed