diff options
author | Valentin Rothberg <vrothberg@suse.com> | 2018-06-27 14:12:57 +0200 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-06-28 13:07:31 +0000 |
commit | 04accf0eff3f242b14b5a14b94390a1703e2b0e6 (patch) | |
tree | 8c87d8a15429dc9c551c0818803e8a6644bc6946 | |
parent | fd12c8918b0c1e1b481c0ab8573263314fe30db4 (diff) | |
download | podman-04accf0eff3f242b14b5a14b94390a1703e2b0e6.tar.gz podman-04accf0eff3f242b14b5a14b94390a1703e2b0e6.tar.bz2 podman-04accf0eff3f242b14b5a14b94390a1703e2b0e6.zip |
podman-build --help: update description
Update the description of podman-build which was mentioning the initial
requirement of Buildah which doesn't apply anymore since Podman is
vendoring Buildah code.
Signed-off-by: Valentin Rothberg <vrothberg@suse.com>
Closes: #1005
Approved by: rhatdan
-rw-r--r-- | cmd/podman/build.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/cmd/podman/build.go b/cmd/podman/build.go index 01f531814..f966ff32f 100644 --- a/cmd/podman/build.go +++ b/cmd/podman/build.go @@ -16,10 +16,11 @@ import ( ) var ( - buildDescription = "podman build launches the Buildah command to build an OCI Image. Buildah must be installed for this command to work." - buildCommand = cli.Command{ + buildDescription = "Builds an OCI or Docker image using instructions from one\n" + + "or more Dockerfiles and a specified build context directory." + buildCommand = cli.Command{ Name: "build", - Usage: "Build an image using instructions in a Dockerfile", + Usage: "build an image using instructions from Dockerfiles", Description: buildDescription, Flags: append(buildahcli.BudFlags, buildahcli.FromAndBudFlags...), Action: buildCmd, |