8000 DL4000 · hadolint/hadolint Wiki · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
Philip Crockett edited this page Nov 24, 2021 · 4 revisions

MAINTAINER is deprecated

Problematic code:

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

Correct code:

FROM busybox
LABEL maintainer="Lukas Martinelli <me@lukasmartinelli.ch>"

Rationale:

MAINTAINER is deprecated since Docker 1.13.0: https://docs.docker.com/engine/deprecated/#maintainer-in-dockerfile

Clone this wiki locally
0