1worker_type=docker2docker_image=reg.lin.moe/docker/alpine:latest3entrypoint=start_foo4depends="bar"56start_foo() {7 echo "in foo"8}910bar() {11 worker_type=docker12 docker_image=reg.lin.moe/library/alpine:latest1314 entrypoint=start_bar15 depends=""1617 # or source https://xxx18}1920start_bar() {21 echo "in bar"22}