Metamigo CI updates

This commit is contained in:
Darren Clarke 2023-06-21 07:32:00 +00:00 committed by GitHub
parent 7aa75317f5
commit 7a2a667aaf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 82 additions and 96 deletions

View file

@ -9,10 +9,10 @@ elif [[ "$1" == "worker" ]]; then
echo "docker-entrypoint: starting worker"
exec dumb-init ./cli worker
elif [[ "$1" == "cli" ]]; then
echo "docker-entrypoint: starting frontend"
echo "docker-entrypoint: starting cli"
shift 1
exec ./cli "$@"
else
echo "docker-entrypoint: missing argument, one of: api, worker, frontend, cli"
echo "docker-entrypoint: missing argument, one of: api, worker, cli"
exit 1
fi