Create docker-entrypoint.sh

This commit is contained in:
Yonas Tewabe
2026-06-12 13:45:29 +03:00
committed by GitHub
parent be7d54d878
commit 4b4e37a21b

View File

@@ -0,0 +1,9 @@
#!/bin/sh
set -e
cd /app
# npm run executes the same package.json scripts as pnpm run (pnpm reinstalls in deploy layout)
npm run migration:run
exec "$@"