Customized-Dashboard / docker /entrypoint.sh
afshin-dini's picture
Initialize the project
172da8c
#!/bin/bash -l
set -e
if [ "$#" -eq 0 ]; then
exec ai_dashboard --help
else
exec "$@"
fi