Skip to content

Commit 2572b2d

Browse files
committed
fix(cli): build push argument
Signed-off-by: Radek Ježek <radek.jezek@ibm.com>
1 parent 579b103 commit 2572b2d

File tree

1 file changed

+1
-1
lines changed
  • apps/beeai-cli/src/beeai_cli/commands

1 file changed

+1
-1
lines changed

apps/beeai-cli/src/beeai_cli/commands/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ async def build(
3838
context: typing.Annotated[str, typer.Argument(help="Docker context for the agent")] = ".",
3939
tag: typing.Annotated[str | None, typer.Option(help="Docker tag for the agent")] = None,
4040
multi_platform: bool | None = False,
41-
push: typing.Annotated[bool, typer.Argument(help="Push the image to the target registry.")] = False,
41+
push: typing.Annotated[bool, typer.Option(help="Push the image to the target registry.")] = False,
4242
import_image: typing.Annotated[
4343
bool, typer.Option("--import/--no-import", is_flag=True, help="Import the image into BeeAI platform")
4444
] = True,

0 commit comments

Comments
 (0)