refactor: remove container from list of run image types

This commit is contained in:
Bobbins228 2025-05-15 14:49:48 +01:00
parent bfdd15d1fa
commit 4c83cfa7cc
3 changed files with 28 additions and 63 deletions

View file

@ -59,7 +59,7 @@ class StackRun(Subcommand):
"--image-type",
type=str,
help="Image Type used during the build. This can be either conda or container or venv.",
choices=[e.value for e in ImageType],
choices=[e.value for e in ImageType if e.value != ImageType.CONTAINER.value],
)
self.parser.add_argument(
"--enable-ui",