vpgen/entrypoint.sh

9 lines
116 B
Bash

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