f0f13f22d9
Cherry-picking modules missed @prisma/engines and other required binaries. Copy the entire node_modules to runner to ensure prisma migrate deploy works correctly. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
9 lines
154 B
Bash
9 lines
154 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
echo "Running database migrations..."
|
|
node /app/node_modules/.bin/prisma migrate deploy
|
|
|
|
echo "Starting Next.js..."
|
|
exec node server.js
|