D3levV
D3levV
PPrisma
Created by D3levV on 1/20/2025 in #help-and-questions
Prisma and Google cloud run
Hello guys have you ever run on this issue before: I get this error in the logs when trying to access prisma client "Prisma cannot find the required libssl system library in your system. Please install openssl and try again." This is my prisma config
generator client {
provider = "prisma-client-js"
previewFeatures = ["fullTextSearchPostgres"]
binaryTargets = ["native", "debian-openssl-1.1.x"]
}

datasource db {
provider = "postgresql"
url=env(DATABASE_URL)
}
generator client {
provider = "prisma-client-js"
previewFeatures = ["fullTextSearchPostgres"]
binaryTargets = ["native", "debian-openssl-1.1.x"]
}

datasource db {
provider = "postgresql"
url=env(DATABASE_URL)
}
5 replies