mirror of
https://github.com/wahyd4/kubectl.git
synced 2026-08-09 05:06:58 +10:00
19 lines
597 B
Docker
19 lines
597 B
Docker
FROM gcr.io/cloud-builders/kubectl
|
|
|
|
LABEL version="1.0.0"
|
|
LABEL name="kubectl"
|
|
LABEL repository="http://github.com/steebchen/kubectl"
|
|
LABEL homepage="http://github.com/steebchen/kubectl"
|
|
|
|
LABEL maintainer="Luca Steeb <contact@luca-steeb.com>"
|
|
LABEL com.github.actions.name="Kubernetes CLI - kubectl"
|
|
LABEL com.github.actions.description="Runs kubectl. The config can be provided with the secret KUBE_CONFIG_DATA."
|
|
LABEL com.github.actions.icon="terminal"
|
|
LABEL com.github.actions.color="blue"
|
|
|
|
COPY LICENSE README.md /
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
CMD ["help"]
|