fix: use prisma 6.19.2 to match project version

This commit is contained in:
Erik Silva
2026-01-20 22:52:12 -03:00
parent 131a847c01
commit 1959047d75

View File

@@ -21,8 +21,8 @@ WORKDIR /app
ENV NODE_ENV=production ENV NODE_ENV=production
# Install prisma CLI globally for migrations # Install prisma CLI globally (same version as project)
RUN npm install -g prisma RUN npm install -g prisma@6.19.2
RUN addgroup --system --gid 1001 nodejs RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs RUN adduser --system --uid 1001 nextjs