refactor(cli): simplify flat image plumbing

This commit is contained in:
Parker Rule
2026-08-28 11:43:55 -04:00
parent fc70ba12fb
commit 2b5cd95263
4 changed files with 21 additions and 37 deletions
+2 -2
View File
@@ -345,7 +345,7 @@ def build_docker_image(
docker_command: Sequence[str] | None = None,
extra_flags: Sequence[str] = (),
verbose: bool = True,
single_user_layer: bool = False,
flat: bool = False,
):
"""Build a Docker image from a LangGraph config."""
# pull latest images
@@ -388,7 +388,7 @@ def build_docker_image(
install_command=install_command,
build_command=build_command,
build_context=build_context,
single_user_layer=single_user_layer,
flat=flat,
)
# add additional_contexts
if additional_contexts: