build: invoke prisma directly to avoid .bin symlink deref
All checks were successful
Build and deploy / build-deploy (push) Successful in 1m13s
All checks were successful
Build and deploy / build-deploy (push) Successful in 1m13s
This commit is contained in:
@@ -4,8 +4,10 @@ set -e
|
|||||||
# Sync schema to the mounted SQLite volume. `db push` is fine for a single-tenant
|
# Sync schema to the mounted SQLite volume. `db push` is fine for a single-tenant
|
||||||
# MVP where we don't need an audit trail of migrations. Switch to `migrate deploy`
|
# MVP where we don't need an audit trail of migrations. Switch to `migrate deploy`
|
||||||
# once the schema stabilizes and we want versioned migrations.
|
# once the schema stabilizes and we want versioned migrations.
|
||||||
|
# Invoke prisma directly via the package — .bin/prisma symlink gets dereferenced
|
||||||
|
# by Docker COPY which breaks the relative wasm resolution it relies on.
|
||||||
echo "→ Running prisma db push"
|
echo "→ Running prisma db push"
|
||||||
npx prisma db push --skip-generate --accept-data-loss=false
|
node ./node_modules/prisma/build/index.js db push --skip-generate --accept-data-loss=false
|
||||||
|
|
||||||
# Optionally seed when explicitly requested. Idempotent (upsert).
|
# Optionally seed when explicitly requested. Idempotent (upsert).
|
||||||
if [ "${RUN_SEED:-false}" = "true" ]; then
|
if [ "${RUN_SEED:-false}" = "true" ]; then
|
||||||
|
|||||||
Reference in New Issue
Block a user