MaintainerDeprecated

输出

MAINTAINER instruction is deprecated in favor of using label

描述

用于指定 Dockerfile 作者的 MAINTAINER 指令已被弃用。要为镜像设置作者元数据,请使用 org.opencontainers.image.authors OCI 标签

示例

❌ 错误:不要使用 MAINTAINER 指令

MAINTAINER moby@example.com

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

LABEL org.opencontainers.image.authors="moby@example.com"
© . This site is unofficial and not affiliated with Kubernetes or Docker Inc.