fix(setup): add --build flag to rebuild on env changes

This commit is contained in:
sharath 2025-05-28 11:12:59 +00:00
parent fda569479b
commit c36c009430
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -729,7 +729,7 @@ def start_suna():
# subprocess.run(['docker', 'compose', 'up', '-d'], check=True)
print_info("Building images locally...")
subprocess.run(['docker', 'compose', 'up', '-d'], check=True, shell=IS_WINDOWS)
subprocess.run(['docker', 'compose', 'up', '-d', '--build'], check=True, shell=IS_WINDOWS)
# Wait for services to be ready
print_info("Waiting for services to start...")