mirror of https://github.com/kortix-ai/suna.git
fix(setup): add --build flag to rebuild on env changes
This commit is contained in:
parent
fda569479b
commit
c36c009430
2
setup.py
2
setup.py
|
@ -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...")
|
||||
|
|
Loading…
Reference in New Issue