Files
vpgen/entrypoint.sh
2024-12-24 03:59:41 -08:00

9 lines
116 B
Bash

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