fix: dummy DATABASE_URL for build phase stability

This commit is contained in:
AyrisAI
2026-04-04 05:13:15 +03:00
parent 0f5c29e50f
commit 4c30962747
2 changed files with 6 additions and 3 deletions

View File

@@ -20,6 +20,7 @@ COPY . .
# Environment variables must be present at build time for Next.js
# Coolify will provide these, but we can set defaults
ENV NEXT_TELEMETRY_DISABLED=1
ENV DATABASE_URL="postgresql://dummy:dummy@localhost:5432/dummy"
# Generate Prisma Client
RUN npx prisma generate