From 04accf0eff3f242b14b5a14b94390a1703e2b0e6 Mon Sep 17 00:00:00 2001 From: Valentin Rothberg Date: Wed, 27 Jun 2018 14:12:57 +0200 Subject: 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 Closes: #1005 Approved by: rhatdan --- cmd/podman/build.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'cmd/podman') 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, -- cgit v1.2.3-54-g00ecf