From 58273fde86e7106f3b54fda60f4f8d4b39841f1c Mon Sep 17 00:00:00 2001 From: Parker Rule Date: Tue, 25 Aug 2026 22:36:09 -0400 Subject: [PATCH] feat(cli): support layer mode from environment --- libs/cli/langgraph_cli/cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/cli/langgraph_cli/cli.py b/libs/cli/langgraph_cli/cli.py index 4bcacc932..ce5ff2fde 100644 --- a/libs/cli/langgraph_cli/cli.py +++ b/libs/cli/langgraph_cli/cli.py @@ -411,6 +411,7 @@ For production use, requires a license key in env var LANGGRAPH_CLOUD_LICENSE_KE @click.option( "--single-user-layer", is_flag=True, + envvar="LANGGRAPH_CLI_SINGLE_USER_LAYER", help="Combine generated Python build steps into one image layer when supported.", ) @click.argument("docker_build_args", nargs=-1, type=click.UNPROCESSED)