diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2021-08-09 20:09:16 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-09 20:09:16 +0000 |
commit | 6513adda185986c1994d2a2d354b874aee7543e6 (patch) | |
tree | 1a8e4242386622886caa4786af15417f0ced4821 /cmd/podman/images/build.go | |
parent | 431707c72044154b956944d00b1ba40b303decb2 (diff) | |
parent | 170fb257295027aeb6410b86e06c38086299d2e3 (diff) | |
download | podman-6513adda185986c1994d2a2d354b874aee7543e6.tar.gz podman-6513adda185986c1994d2a2d354b874aee7543e6.tar.bz2 podman-6513adda185986c1994d2a2d354b874aee7543e6.zip |
Merge pull request #11134 from rhatdan/buildx
Alias build to buildx, so it won't fail
Diffstat (limited to 'cmd/podman/images/build.go')
-rw-r--r-- | cmd/podman/images/build.go | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/cmd/podman/images/build.go b/cmd/podman/images/build.go index 3aeba6fb0..a1a28b809 100644 --- a/cmd/podman/images/build.go +++ b/cmd/podman/images/build.go @@ -67,6 +67,18 @@ var ( podman image build --layers --force-rm --tag imageName .`, } + buildxBuildCmd = &cobra.Command{ + Args: buildCmd.Args, + Use: buildCmd.Use, + Short: buildCmd.Short, + Long: buildCmd.Long, + RunE: buildCmd.RunE, + ValidArgsFunction: buildCmd.ValidArgsFunction, + Example: `podman buildx build . + podman buildx build --creds=username:password -t imageName -f Containerfile.simple . + podman buildx build --layers --force-rm --tag imageName .`, + } + buildOpts = buildFlagsWrapper{} ) @@ -91,11 +103,24 @@ func init() { Parent: imageCmd, }) buildFlags(imageBuildCmd) + registry.Commands = append(registry.Commands, registry.CliCommand{ + Command: buildxBuildCmd, + Parent: buildxCmd, + }) + buildFlags(buildxBuildCmd) } func buildFlags(cmd *cobra.Command) { flags := cmd.Flags() + // buildx build --load ignored, but added for compliance + flags.Bool("load", false, "buildx --load") + _ = flags.MarkHidden("load") + + // buildx build --progress ignored, but added for compliance + flags.String("progress", "auto", "buildx --progress") + _ = flags.MarkHidden("progress") + // Podman flags flags.BoolVarP(&buildOpts.SquashAll, "squash-all", "", false, "Squash all layers into a single layer") |