Skip to content

Commit 71a59d7

Browse files
authored
Remove deprecated Maintainer tag in Dockerfile (#267)
1 parent ad166c7 commit 71a59d7

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@ FROM alpine:3.18.3 as certs
22
RUN apk add ca-certificates
33

44
FROM scratch AS kubeconform
5-
LABEL org.opencontainers.image.authors="yann@mandragor.org" \
5+
LABEL org.opencontainers.image.authors="Yann Hamon <yann@mandragor.org>" \
66
org.opencontainers.image.source="https://github.com/yannh/kubeconform/" \
77
org.opencontainers.image.description="A Kubernetes manifests validation tool" \
88
org.opencontainers.image.documentation="https://github.com/yannh/kubeconform/" \
99
org.opencontainers.image.licenses="Apache License 2.0" \
1010
org.opencontainers.image.title="kubeconform" \
1111
org.opencontainers.image.url="https://github.com/yannh/kubeconform/"
12-
MAINTAINER Yann HAMON <yann@mandragor.org>
1312
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
1413
COPY kubeconform /
1514
ENTRYPOINT ["/kubeconform"]

Dockerfile-alpine

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
FROM alpine:3.18.3
2-
LABEL org.opencontainers.image.authors="yann@mandragor.org" \
2+
LABEL org.opencontainers.image.authors="Yann Hamon <yann@mandragor.org>" \
33
org.opencontainers.image.source="https://github.com/yannh/kubeconform/" \
44
org.opencontainers.image.description="A Kubernetes manifests validation tool" \
55
org.opencontainers.image.documentation="https://github.com/yannh/kubeconform/" \
66
org.opencontainers.image.licenses="Apache License 2.0" \
77
org.opencontainers.image.title="kubeconform" \
88
org.opencontainers.image.url="https://github.com/yannh/kubeconform/"
9-
MAINTAINER Yann HAMON <yann@mandragor.org>
109
RUN apk add ca-certificates
1110
COPY kubeconform /
1211
ENTRYPOINT ["/kubeconform"]

0 commit comments

Comments
 (0)