b04c4ca
1
2
3
4
5
6
7
8
9
#!/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 "$@"