TypeError: client_1.Prisma.validator is not a function
I set up a nx monorepo application with nest js prisma and I have this error when I run a generated docker image for my nest js app.
I have this
Dockerfile and I made sure to build my nest app and generated the prisma client before building it to the dist/apps and running the dockerfile1 Reply
Hello @villy 👋
Could you try including
RUN npx prisma generate in your docker file to confirm that Prisma Client is generated?