ReservedStageName
Table des matières
Output
'scratch' is reserved and should not be used as a stage nameDescription
Reserved words should not be used as names for stages in multi-stage builds. The reserved words are:
contextscratch
Examples
❌ Bad: scratch and context are reserved names.
FROM alpine AS scratch
FROM alpine AS context✅ Good: the stage name builder is not reserved.
FROM alpine AS builder