mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
6784a772ba
- command.Commands was missing "Label" - used the correct error string in dispatcher when LABEL has no args, otherwise the test TestBuildMissingArgs will not work - removed the premature error msg in line_parser that was blocking the label() func in dispatcher from showing the err msg in previous bullet - since LABEL uses the env parser it needs to be added to the replaceEnvAllowed list so that proper quote processing will be done. Especially once PR #10431 is merged. Signed-off-by: Doug Davis <dug@us.ibm.com>
39 lines
761 B
Go
39 lines
761 B
Go
// This package contains the set of Dockerfile commands.
|
|
package command
|
|
|
|
const (
|
|
Env = "env"
|
|
Label = "label"
|
|
Maintainer = "maintainer"
|
|
Add = "add"
|
|
Copy = "copy"
|
|
From = "from"
|
|
Onbuild = "onbuild"
|
|
Workdir = "workdir"
|
|
Run = "run"
|
|
Cmd = "cmd"
|
|
Entrypoint = "entrypoint"
|
|
Expose = "expose"
|
|
Volume = "volume"
|
|
User = "user"
|
|
Insert = "insert"
|
|
)
|
|
|
|
// Commands is list of all Dockerfile commands
|
|
var Commands = map[string]struct{}{
|
|
Env: {},
|
|
Label: {},
|
|
Maintainer: {},
|
|
Add: {},
|
|
Copy: {},
|
|
From: {},
|
|
Onbuild: {},
|
|
Workdir: {},
|
|
Run: {},
|
|
Cmd: {},
|
|
Entrypoint: {},
|
|
Expose: {},
|
|
Volume: {},
|
|
User: {},
|
|
Insert: {},
|
|
}
|