summaryrefslogtreecommitdiff
path: root/cmd/podman/build.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/podman/build.go')
-rw-r--r--cmd/podman/build.go7
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,