feat(cli): make venv the default image type

This commit is contained in:
Ashwin Bharambe 2025-08-18 09:21:41 -07:00
parent a8091d0c6a
commit 6e390ae21a
2 changed files with 3 additions and 19 deletions

View file

@ -59,7 +59,7 @@ class StackBuild(Subcommand):
type=str,
help="Image Type to use for the build. If not specified, will use the image type from the template config.",
choices=[e.value for e in ImageType],
default=None, # no default so we can detect if a user specified --image-type and override image_type in the config
default=ImageType.VENV.value,
)
self.parser.add_argument(