13
0
Fork 0
mirror of https://github.com/yannh/kubeconform.git synced 2026-06-28 16:00:44 +00:00
kubeconform/Dockerfile-alpine
Yann Hamon b83bf792b2
Openapi2jsonschema-go (#357)
* Go implementation of openapi2jsonschema
* Add go version of openapi2jsonschema to container
2026-06-04 21:17:41 +02:00

13 lines
640 B
Text

FROM alpine:3.20.2
LABEL org.opencontainers.image.authors="Yann Hamon <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/"
RUN apk add ca-certificates
COPY kubeconform /
COPY openapi2jsonschema /
ENTRYPOINT ["/kubeconform"]