therafk/gitops
FROM alpine
LABEL org.opencontainers.image.authors="therafk@email.com"
RUN apk add curl git vim jq wget && \
curl -LO https://dl.k8s.io/release/v1.30/bin/linux/amd64/kubectl && \
cp kubectl /usr/local/bin/kubectl && \
chmod +x /usr/local/bin/kubectl
kubectl run gitools --image therafk/gitops --dry-run=client -oyaml -- sleep infinity > gittools.yaml
docker pull therafk/gitops