diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2019-03-13 08:01:28 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2019-03-13 08:21:11 -0400 |
commit | adad93342c9cfd8e6d5f6c591d44754c91be9e5c (patch) | |
tree | 5c3b81d5aa9b76139184f91f36150469c2214876 /vendor/github.com/openshift/imagebuilder/dockerfile/command | |
parent | 8b637bd78c8c120d07f245d9a837e52afd47c72a (diff) | |
download | podman-adad93342c9cfd8e6d5f6c591d44754c91be9e5c.tar.gz podman-adad93342c9cfd8e6d5f6c591d44754c91be9e5c.tar.bz2 podman-adad93342c9cfd8e6d5f6c591d44754c91be9e5c.zip |
Update vendor of Buildah and imagebuilder
Fixes the testing issues we are hitting.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'vendor/github.com/openshift/imagebuilder/dockerfile/command')
-rw-r--r-- | vendor/github.com/openshift/imagebuilder/dockerfile/command/command.go | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/vendor/github.com/openshift/imagebuilder/dockerfile/command/command.go b/vendor/github.com/openshift/imagebuilder/dockerfile/command/command.go new file mode 100644 index 000000000..f23c6874b --- /dev/null +++ b/vendor/github.com/openshift/imagebuilder/dockerfile/command/command.go @@ -0,0 +1,46 @@ +// Package command contains the set of Dockerfile commands. +package command + +// Define constants for the command strings +const ( + Add = "add" + Arg = "arg" + Cmd = "cmd" + Copy = "copy" + Entrypoint = "entrypoint" + Env = "env" + Expose = "expose" + From = "from" + Healthcheck = "healthcheck" + Label = "label" + Maintainer = "maintainer" + Onbuild = "onbuild" + Run = "run" + Shell = "shell" + StopSignal = "stopsignal" + User = "user" + Volume = "volume" + Workdir = "workdir" +) + +// Commands is list of all Dockerfile commands +var Commands = map[string]struct{}{ + Add: {}, + Arg: {}, + Cmd: {}, + Copy: {}, + Entrypoint: {}, + Env: {}, + Expose: {}, + From: {}, + Healthcheck: {}, + Label: {}, + Maintainer: {}, + Onbuild: {}, + Run: {}, + Shell: {}, + StopSignal: {}, + User: {}, + Volume: {}, + Workdir: {}, +} |