diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index 06cf2a3..fd49c2d 100644 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -7,8 +7,7 @@ mkdir -p /app/prisma echo "→ Syncing database schema..." # db push creates the SQLite file and syncs tables to match schema.prisma -# --skip-generate: client was already generated at build time -/app/node_modules/.bin/prisma db push --skip-generate +/app/node_modules/.bin/prisma db push echo "→ Starting Next.js on port ${PORT:-3000}..." exec node /app/server.js