wsj-server / entrypoint.sh
vettorazi's picture
new dockerfile
a756e18
raw
history blame contribute delete
201 Bytes
#!/bin/bash
set -e
# Start ComfyUI
python main.py --listen &
# Start wsj-server
python wsj-server.py &
# Wait for any process to exit
wait -n
# Exit with status of process that exited first
exit $?