Fixes runtime error where Prisma Client could not locate the Query Engine: "libquery_engine-debian-openssl-1.1.x.so.node" not found Root cause: - Next.js standalone output does not include Prisma Query Engine binaries - The .prisma folder in node_modules contains the required binary files Solution: - Copy node_modules/.prisma folder in Docker runner stage - This includes libquery_engine-debian-openssl-1.1.x.so.node - Prisma Client can now find and load the Query Engine at runtime Tested: ✓ Docker build successful ✓ Container starts without Prisma errors ✓ Application ready in 40ms Changes: - keep-notes/Dockerfile: Add COPY for node_modules/.prisma folder Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
64 lines
1.6 KiB
Docker
64 lines
1.6 KiB
Docker
# Multi-stage build for Next.js 16 with Webpack + Prisma
|
|
# Using Debian 11 (bullseye) for native OpenSSL 1.1.x support
|
|
|
|
FROM node:22-bullseye-slim AS base
|
|
|
|
FROM base AS deps
|
|
WORKDIR /app
|
|
|
|
# Install OpenSSL (1.1.x native in Debian 11)
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
openssl \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install dependencies
|
|
COPY package.json package-lock.json* ./
|
|
RUN npm install --legacy-peer-deps
|
|
|
|
FROM base AS builder
|
|
WORKDIR /app
|
|
COPY --from=deps /app/node_modules ./node_modules
|
|
COPY . .
|
|
|
|
# Copy Prisma schema and generate client BEFORE Next.js build
|
|
COPY prisma ./prisma
|
|
RUN npx prisma generate
|
|
|
|
# Build Next.js with Webpack
|
|
ENV NEXT_TELEMETRY_DISABLED=1
|
|
RUN npm run build
|
|
|
|
FROM base AS runner
|
|
WORKDIR /app
|
|
|
|
ENV NODE_ENV=production
|
|
ENV NEXT_TELEMETRY_DISABLED=1
|
|
|
|
RUN addgroup --system --gid 1001 nodejs
|
|
RUN adduser --system --uid 1001 nextjs
|
|
|
|
COPY --from=builder /app/public ./public
|
|
COPY --from=builder /app/package.json ./package.json
|
|
COPY --from=builder /app/package-lock.json ./package-lock.json
|
|
|
|
RUN mkdir .next
|
|
RUN chown nextjs:nodejs .next
|
|
|
|
# Copy Next.js standalone output
|
|
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
|
|
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
|
|
|
|
# Copy Prisma schema, generated client, and Query Engine binaries
|
|
COPY --from=builder /app/prisma ./prisma
|
|
COPY --from=builder --chown=nextjs:nodejs /app/node_modules/.prisma ./node_modules/.prisma
|
|
COPY --from=builder --chown=nextjs:nodejs /app/node_modules ./node_modules
|
|
|
|
USER nextjs
|
|
|
|
EXPOSE 3000
|
|
|
|
ENV PORT=3000
|
|
ENV HOSTNAME="0.0.0.0"
|
|
|
|
CMD ["node", "server.js"]
|