Skip to content

Commit 8273ae5

Browse files
tofikwestclaude
andcommitted
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 <noreply@anthropic.com>
1 parent eec6251 commit 8273ae5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/api/Dockerfile.multistage

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ ENV NODE_ENV=production
9292
ENV PORT=3333
9393

9494
# Install Prisma CLI and regenerate client in production stage
95-
RUN npm install -g prisma@6.13.0 && \
95+
RUN npm install -g prisma@6.18.0 && \
9696
prisma generate --schema=./prisma/schema.prisma
9797

9898
# Create non-root user

0 commit comments

Comments
 (0)