kubeconform/Dockerfile-alpine
ZoeKoch dbe62143c2
Copy kubeconform to /usr/bin/kubeconform
Copy kubeconform directory to a directory that's in your PATH to avoid "kubeconform command not found" errors.
2022-10-26 16:39:16 -06:00

12 lines
669 B
Text

FROM alpine:3.14 as certs
LABEL org.opencontainers.image.authors="yann@mandragor.org" \
org.opencontainers.image.source="https://github.com/yannh/kubeconform/" \
org.opencontainers.image.description="A Kubernetes manifests validation tool" \
org.opencontainers.image.documentation="https://github.com/yannh/kubeconform/" \
org.opencontainers.image.licenses="Apache License 2.0" \
org.opencontainers.image.title="kubeconform" \
org.opencontainers.image.url="https://github.com/yannh/kubeconform/"
MAINTAINER Yann HAMON <yann@mandragor.org>
RUN apk add ca-certificates
COPY kubeconform ./usr/bin/kubeconform
ENTRYPOINT ["kubeconform"]