diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2018-06-01 12:59:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-01 12:59:47 -0400 |
commit | 3c63a48bb8c1bdff688ce5b6c9c6e3079370e603 (patch) | |
tree | d098f85f80fb364e0d8b082ecd1f898cfde2c186 /vendor/github.com/projectatomic/buildah/pkg | |
parent | 10d440a1c898aac84198c9c34d48d0cea9085f68 (diff) | |
parent | 29c831f9d6abf8d650bc7feb63a1e60876238504 (diff) | |
download | podman-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 'vendor/github.com/projectatomic/buildah/pkg')
-rw-r--r-- | vendor/github.com/projectatomic/buildah/pkg/cli/common.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/vendor/github.com/projectatomic/buildah/pkg/cli/common.go b/vendor/github.com/projectatomic/buildah/pkg/cli/common.go index e4a30a315..a7b61d561 100644 --- a/vendor/github.com/projectatomic/buildah/pkg/cli/common.go +++ b/vendor/github.com/projectatomic/buildah/pkg/cli/common.go @@ -152,6 +152,10 @@ var ( Name: "squash", Usage: "Squash newly built layers into a single new layer. Buildah does not currently support caching so this is a NOOP.", }, + cli.BoolTFlag{ + Name: "stream", + Usage: "There is no daemon in use, so this command is a NOOP.", + }, cli.StringSliceFlag{ Name: "tag, t", Usage: "tagged `name` to apply to the built image", |