you have probably another OS in the docker contain...
# orm-help
o
you have probably another OS in the docker container (alpine, ubuntu… -> linux) so you have to tell this prisma. Try this in you schema.prisma file:
Copy code
generator client {
  provider      = "prisma-client-js"
  binaryTargets = ["native", "linux-musl"]
}
🙌 1