保留舞台名称

输出

'scratch' is reserved and should not be used as a stage name

描述

保留字不应用作多阶段构建中阶段的名称。 保留字为:

  • context
  • scratch

例子

❌ Bad: 和 是保留名称。scratchcontext

FROM alpine AS scratch
FROM alpine AS context

✅ Good:不保留阶段名称。builder

FROM alpine AS builder