mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-06 02:32:40 +00:00
debug command
This commit is contained in:
parent
3ba0b9f45b
commit
b0833d1376
1 changed files with 2 additions and 2 deletions
|
@ -104,7 +104,8 @@ def print_pip_install_help(providers: Dict[str, List[Provider]]):
|
||||||
|
|
||||||
|
|
||||||
def build_image(
|
def build_image(
|
||||||
build_config: BuildConfig, build_file_path: Path, dockerfile_only: bool = False
|
build_config: BuildConfig,
|
||||||
|
build_file_path: Path,
|
||||||
):
|
):
|
||||||
docker_image = build_config.distribution_spec.docker_image or "python:3.10-slim"
|
docker_image = build_config.distribution_spec.docker_image or "python:3.10-slim"
|
||||||
|
|
||||||
|
@ -124,7 +125,6 @@ def build_image(
|
||||||
str(build_file_path),
|
str(build_file_path),
|
||||||
str(BUILDS_BASE_DIR / ImageType.docker.value),
|
str(BUILDS_BASE_DIR / ImageType.docker.value),
|
||||||
" ".join(normal_deps),
|
" ".join(normal_deps),
|
||||||
str(dockerfile_only),
|
|
||||||
]
|
]
|
||||||
elif build_config.image_type == ImageType.conda.value:
|
elif build_config.image_type == ImageType.conda.value:
|
||||||
script = (
|
script = (
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue