Merge pull request 'fix: Add DATABASE_URL env var in builder stage for Prisma' (#10) from develop into main
All checks were successful
Personal/recall/pipeline/head This commit looks good

Reviewed-on: #10
This commit was merged in pull request #10.
This commit is contained in:
2026-03-24 02:32:58 +00:00

View File

@@ -23,6 +23,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
COPY --from=deps /app/node_modules ./node_modules
COPY . .
ENV DATABASE_URL="file:./dev.db"
RUN npx prisma generate
RUN npm run build