From db686f9d7d50ada04584983d653768c039f0d7dd Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 6 Nov 2025 18:39:39 +0000 Subject: [PATCH] Fix Prisma engine download failures by pre-generating client in deps stage The build was failing with Prisma schema validation errors because Prisma couldn't download engine binaries from binaries.prisma.sh (403 Forbidden). This resulted in cryptic parsing errors during 'prisma generate'. Changes: - Add openssl and ca-certificates to deps stage for engine downloads - Set PRISMA_ENGINES_CHECKSUM_IGNORE_MISSING to bypass checksum validation - Pre-generate Prisma client with engines in deps stage - Copy pre-generated client to builder stage to avoid re-downloading - Set PRISMA_SKIP_POSTINSTALL_GENERATE in builder to prevent regeneration This ensures engines are bundled during the deps stage and reused in subsequent stages, eliminating network dependency during the build phase. --- docker/web/Dockerfile | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/docker/web/Dockerfile b/docker/web/Dockerfile index a4ec85b4..abef8438 100644 --- a/docker/web/Dockerfile +++ b/docker/web/Dockerfile @@ -9,9 +9,17 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ python3 \ make \ g++ \ + openssl \ + ca-certificates \ && rm -rf /var/lib/apt/lists/* +# Set Prisma to download engines during install and ignore checksum errors +ENV PRISMA_CLI_BINARY_TARGETS=native,debian-openssl-3.0.x +ENV PRISMA_ENGINES_CHECKSUM_IGNORE_MISSING=1 COPY package.json package-lock.json* ./ RUN if [ -f package-lock.json ]; then npm ci; else npm install; fi +# Explicitly generate Prisma client with engines during deps stage +COPY prisma ./prisma +RUN npx prisma generate FROM base AS builder ENV NODE_ENV=production @@ -19,14 +27,16 @@ ENV NEXT_TELEMETRY_DISABLED=1 # Set a temporary database path for build ENV DATABASE_PATH=/tmp/build.db ENV DATABASE_URL=file:/tmp/build.db +# Skip Prisma engine checksum validation and downloads (engines already bundled from deps stage) +ENV PRISMA_ENGINES_CHECKSUM_IGNORE_MISSING=1 +ENV PRISMA_SKIP_POSTINSTALL_GENERATE=1 # Install openssl for Prisma query engine RUN apt-get update && apt-get install -y --no-install-recommends \ openssl \ && rm -rf /var/lib/apt/lists/* COPY --from=deps /app/node_modules ./node_modules COPY . . -# Build the application (includes prisma generate as per Prisma best practices) -# Real Prisma client will be regenerated at runtime to ensure engine availability +# Build the application (prisma client already generated in deps stage with engines) RUN npx prisma db push --skip-generate RUN npm run build && rm -f /tmp/build.db