11 Replies
You chose to debug with a human. They'll tinker with your query soon. If you get curious meanwhile, hop into
#ask-ai for a quick spin!Can you share your schema.prisma file without the models?
generator client {
provider = "prisma-client-js"
output = "../src/generated/client"
previewFeatures = ["typedSql"]
binaryTargets = ["linux-arm64-openssl-3.0.x"]
engineType = "binary"
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
You need to add
debian-openssl-3.0.x to binaryTargets:
I have another microservice where it works with the same generator and dockerfiles, and they are from the same droplet of digital ocean, why does this happen?
afaik there are no ARM droplets on DO, so maybe you're targeting native on another service?
ah I didn’t know, this is my system information: 6.11.0-26-generic #26-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 12 11:25:41 UTC 2025 x86_64 x86_64 x86_64 GNU/Linux, maybe it can be useful
Anyway, have you updated binaryTargets and tried again?
i try now
I also used npx prisma generate after add debian-openssl-3.0.x
there are, I’m doing a new deploy
@514sid it worked
Thanks for the feedback!
Thank you very much for your availability
