Maintainer已弃用

输出

MAINTAINER instruction is deprecated in favor of using label

描述

该指令在历史上用于指定 Dockerfile 已弃用。要设置镜像的作者元数据,请使用 OCI 标签MAINTAINERorg.opencontainers.image.authors

例子

❌ Bad: don't use the instruction (不好:不要使用指令)MAINTAINER

MAINTAINER moby@example.com

✅ Good:使用标签指定作者org.opencontainers.image.authors

LABEL org.opencontainers.image.authors="moby@example.com"