I have just implemented Prisma in my API (nestjs) ...
# orm-help
d
I have just implemented Prisma in my API (nestjs) which is deployed at azure as an app-service (docker) fails to run for some reason. Anybody who can decipher this error message and point me in the right direction?
Copy code
2022-08-09T10:08:52.736172785Z Validation Error Count: 1
2022-08-09T10:08:52.736175685Z     at LibraryEngine.loadEngine (/node_modules/@prisma/client/runtime/index.js:25244:17)
2022-08-09T10:08:52.736178785Z     at async LibraryEngine.instantiateLibrary (/node_modules/@prisma/client/runtime/index.js:25185:5)
2022-08-09T10:08:52.736181685Z     at async LibraryEngine.getConfig (/node_modules/@prisma/client/runtime/index.js:25371:5)
2022-08-09T10:08:52.736190185Z     at async PrismaService._getActiveProvider (/node_modules/@prisma/client/runtime/index.js:29267:30) {
2022-08-09T10:08:52.736194185Z   clientVersion: '4.1.1',
2022-08-09T10:08:52.736197085Z   errorCode: 'P1012'
2022-08-09T10:08:52.736199985Z }
👀 1
m
I had quite a time containerizing my NestJS + Prisma app. Can you try to run your container locally and get a better sense of the error using Docker Desktop?
d
@Michael I completely missed your reply sorry! So this is really odd… Everything works on my machine 😄 But as soon as I deploy it to azure do I get the error mentioned in my first message
a
Hey there! Is there any more detail to the error message or is that it?