Skip to content

Files

Latest commit

 

History

History
33 lines (22 loc) · 649 Bytes

DL3012.md

File metadata and controls

33 lines (22 loc) · 649 Bytes

Pattern: Missing email address or URL for MAINTAINER

Issue: -

Description

This rule is DEPRECATED and no longer active.

If you only have a name and not an email address or URL, no one can contact you and therefore the MAINTAINER information could also be omitted.

Example of incorrect code:

FROM busybox
MAINTAINER lukas

Example of correct code:

FROM busybox
MAINTAINER Lukas Martinelli <me@lukasmartinelli.ch>
FROM busybox
MAINTAINER Lukas Martinelli http://lukasmartinelli.ch

Further Reading