From 6a358ce8987f7c319f09a1f297724ad0d0fa5e04 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Sun, 7 Apr 2024 00:45:20 -1000 Subject: [PATCH] Update Prisma binary execution path --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 1e87d1f0..ad752f7d 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -31,7 +31,7 @@ case "$1" in # Set DATABASE_URL env variable to the output of bun run ./dist/prisma.js export DATABASE_URL=$(bun run ./prisma.js) # Execute the Prisma binary - exec bunx prisma "$@" + exec ./node_modules/.bin/prisma "$@" ;; *) # Run custom commands