summaryrefslogtreecommitdiff
path: root/cmd/podman/commit.go
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2018-06-01 12:59:47 -0400
committerGitHub <noreply@github.com>2018-06-01 12:59:47 -0400
commit3c63a48bb8c1bdff688ce5b6c9c6e3079370e603 (patch)
treed098f85f80fb364e0d8b082ecd1f898cfde2c186 /cmd/podman/commit.go
parent10d440a1c898aac84198c9c34d48d0cea9085f68 (diff)
parent29c831f9d6abf8d650bc7feb63a1e60876238504 (diff)
downloadpodman-3c63a48bb8c1bdff688ce5b6c9c6e3079370e603.tar.gz
podman-3c63a48bb8c1bdff688ce5b6c9c6e3079370e603.tar.bz2
podman-3c63a48bb8c1bdff688ce5b6c9c6e3079370e603.zip
Merge pull request #859 from rhatdan/onbuild
Add OnBuild support for podman build
Diffstat (limited to 'cmd/podman/commit.go')
-rw-r--r--cmd/podman/commit.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/podman/commit.go b/cmd/podman/commit.go
index ce8e99dd4..90a003e8e 100644
--- a/cmd/podman/commit.go
+++ b/cmd/podman/commit.go
@@ -19,7 +19,7 @@ var (
commitFlags = []cli.Flag{
cli.StringSliceFlag{
Name: "change, c",
- Usage: "Apply the following possible instructions to the created image (default []): CMD | ENTRYPOINT | ENV | EXPOSE | LABEL | STOPSIGNAL | USER | VOLUME | WORKDIR",
+ Usage: fmt.Sprintf("Apply the following possible instructions to the created image (default []): %s", strings.Join(libpod.ChangeCmds, " | ")),
},
cli.StringFlag{
Name: "format, f",
@@ -92,7 +92,7 @@ func commitCmd(c *cli.Context) error {
if c.IsSet("change") {
for _, change := range c.StringSlice("change") {
splitChange := strings.Split(strings.ToUpper(change), "=")
- if !util.StringInSlice(splitChange[0], []string{"CMD", "ENTRYPOINT", "ENV", "EXPOSE", "LABEL", "STOPSIGNAL", "USER", "VOLUME", "WORKDIR"}) {
+ if !util.StringInSlice(splitChange[0], libpod.ChangeCmds) {
return errors.Errorf("invalid syntax for --change ", change)
}
}