From 8273ae5042f4aadf1d3c205544e2ccb249575267 Mon Sep 17 00:00:00 2001 From: Tofik Hasanov Date: Tue, 17 Feb 2026 11:15:39 -0500 Subject: [PATCH] fix(api): update Prisma version in Dockerfile to match project The Dockerfile installed prisma@6.13.0 in the production stage but the project uses prisma@6.18.0. Version mismatch between builder and production stages can cause schema parsing errors. Co-Authored-By: Claude Opus 4.6 --- apps/api/Dockerfile.multistage | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/Dockerfile.multistage b/apps/api/Dockerfile.multistage index b5f4f0ff27..9eef3018e0 100644 --- a/apps/api/Dockerfile.multistage +++ b/apps/api/Dockerfile.multistage @@ -92,7 +92,7 @@ ENV NODE_ENV=production ENV PORT=3333 # Install Prisma CLI and regenerate client in production stage -RUN npm install -g prisma@6.13.0 && \ +RUN npm install -g prisma@6.18.0 && \ prisma generate --schema=./prisma/schema.prisma # Create non-root user