mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-06-28 10:54:19 +00:00
refactor: remove container from list of run image types
This commit is contained in:
parent
bfdd15d1fa
commit
4c83cfa7cc
3 changed files with 28 additions and 63 deletions
|
@ -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",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue