From 5986dfd50c1e7e409652aac4f5ca403bd0697216 Mon Sep 17 00:00:00 2001 From: mark Date: Wed, 18 Feb 2026 01:34:50 +0000 Subject: [PATCH] fix: use local prisma binary in entrypoint (avoid npx downloading wrong version) --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 331ec9d..926b92b 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -2,7 +2,7 @@ set -e echo "Running Prisma DB push to ensure tables exist..." -npx prisma db push --accept-data-loss +./node_modules/.bin/prisma db push --accept-data-loss echo "Starting Next.js server..." exec node server.js