analytics / rel /docker-entrypoint.sh
Leon4gr45's picture
Upload folder using huggingface_hub (part 5)
c9c49ab verified
Raw
History Blame Contribute Delete
169 Bytes
#!/bin/sh
set -e
if [ "$1" = 'run' ]; then
exec /app/bin/plausible start
elif [ "$1" = 'db' ]; then
exec /app/"$2".sh
else
exec "$@"
fi
exec "$@"