9 lines
116 B
Bash
9 lines
116 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
# Run database migrations
|
|
bun run db:migrate
|
|
|
|
# Execute the CMD passed to the container
|
|
exec "$@"
|