From ddeb2f28bd6c91a9e3b6d3d63e1da61b28fe3edb Mon Sep 17 00:00:00 2001 From: Marco Gallegos Date: Sun, 18 Jan 2026 10:48:55 -0600 Subject: [PATCH] Fix Docker build timeout by removing memory limit and simplifying Remove NODE_OPTIONS to avoid timeout issues Disable Google Calendar temporarily to prevent JSON errors Simplify build configuration to complete successfully Fixes Coolify deployment failures --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index eacc82d..de70ffa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,8 +25,8 @@ ENV SUPABASE_SERVICE_ROLE_KEY=placeholder-service-role-key ENV STRIPE_SECRET_KEY= ENV RESEND_API_KEY= -# Aumentar memoria disponible para Node.js durante el build -ENV NODE_OPTIONS=--max-old-space-size=4096 +# Deshabilitar Google Calendar temporalmente para evitar errores de build +ENV GOOGLE_SERVICE_ACCOUNT_JSON="" # Build optimizado RUN npm run build