From 01d85f66dcc9f85929cb61161430ae9e6afefa4a Mon Sep 17 00:00:00 2001 From: Matti Nannt Date: Fri, 21 Nov 2025 10:33:00 +0100 Subject: [PATCH] fix: pin Prisma CLI to version 6 in Dockerfile (backport) (#6872) --- apps/web/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/Dockerfile b/apps/web/Dockerfile index 5af6d18de2..1a3848b400 100644 --- a/apps/web/Dockerfile +++ b/apps/web/Dockerfile @@ -124,7 +124,7 @@ RUN chmod -R 755 ./node_modules/@noble/hashes COPY --from=installer /app/node_modules/zod ./node_modules/zod RUN chmod -R 755 ./node_modules/zod -RUN npm install -g prisma +RUN npm install -g prisma@6 # Create a startup script to handle the conditional logic COPY --from=installer /app/apps/web/scripts/docker/next-start.sh /home/nextjs/start.sh