subul / backend /docker-entrypoint.sh
Kaadan's picture
add seeding applications
b04c4ca
#!/bin/bash
set -e
# Run database seeding
echo "Running database seeding..."
python db_seeder.py
# Then exec the container's main process (what's specified as CMD in the Dockerfile)
exec "$@"