mirror of
https://github.com/yannh/kubeconform.git
synced 2026-02-11 05:59:22 +00:00
Add opencontainers label (#138)
This commit is contained in:
parent
46b7622a08
commit
a31707ca58
2 changed files with 14 additions and 0 deletions
|
|
@ -2,6 +2,13 @@ FROM alpine:3.14 as certs
|
|||
RUN apk add ca-certificates
|
||||
|
||||
FROM scratch AS kubeconform
|
||||
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>
|
||||
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
||||
COPY kubeconform /
|
||||
|
|
|
|||
|
|
@ -1,4 +1,11 @@
|
|||
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 /
|
||||
|
|
|
|||
Loading…
Reference in a new issue