维护者已弃用

输出

MAINTAINER instruction is deprecated in favor of using label

描述

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

示例

❌ 错误:不要使用 MAINTAINER 指令

MAINTAINER moby@example.com

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

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