7 lines
136 B
Bash
7 lines
136 B
Bash
#!/bin/bash
|
|
set -e
|
|
echo "[entrypoint] Running database seed..."
|
|
python seed_db.py
|
|
echo "[entrypoint] Starting application..."
|
|
exec "$@"
|