You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added a new CLI command dockerfile to generate a Dockerfile for langgraph API server
Improved Docker image generation with optimizations for smaller images and cleaner Dockerfile output
Detailed Changes
CLI Commands
Added new dockerfile command that allows users to generate a Dockerfile for the langgraph API server. Users can specify a save path and configuration file to create a customized Dockerfile.
Configuration
Enhanced config_to_docker function with Docker build optimizations:
Added PYTHONDONTWRITEBYTECODE=1 flag to prevent creation of .pyc files
Added --no-cache-dir flag to pip install commands to reduce Docker image size
Improved Dockerfile generation with cleaner formatting and organization of install instructions
Consolidated separate installation sections into a more streamlined structure