optimize container build
Some checks failed
Build and Push Docker Images / Build and Push Docker Images (push) Failing after 1m36s

This commit is contained in:
2025-01-10 21:20:33 +05:00
parent fe3161ead9
commit 0e6f405ec4
3 changed files with 17 additions and 17 deletions

View File

@@ -4,11 +4,12 @@
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "bunx prisma migrate deploy && bunx prisma generate && bunx prisma db push && next build",
"build": "next build",
"start": "next start",
"lint": "next lint",
"studio": "bunx prisma studio",
"push": "bunx prisma db push"
"push": "bunx prisma db push",
"db-setup": "bunx prisma migrate deploy && bunx prisma generate && bunx prisma db push"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
@@ -66,4 +67,4 @@
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}
}