docker build setup

This commit is contained in:
2024-12-24 03:23:58 -08:00
parent 7b3c45d845
commit c734b445a8
9 changed files with 126 additions and 27 deletions

8
entrypoint.sh Normal file
View File

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