workflow build task moved to external script

This commit is contained in:
zurdi zurdo
2023-03-17 12:02:49 +01:00
parent 9df6c37065
commit 8954554d8e
7 changed files with 11 additions and 18 deletions

11
docker/init_scripts/init Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
/init_back &
/init_front &
# Wait for any process to exit
wait -n
# Exit with status of process that exited first
exit $?