From 3e3017ede84c9cf205116090511051becee4ef72 Mon Sep 17 00:00:00 2001 From: czlonkowski <56956555+czlonkowski@users.noreply.github.com> Date: Sun, 6 Jul 2025 16:07:16 +0200 Subject: [PATCH] fix: force Docker to use updated database with trigger fixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Added cache-busting comment to invalidate Docker's build cache - Previous builds were using cached COPY layer with old database from 13:18 - This ensures Docker copies the new database (15:38) with is_trigger=true fixes - Affects: webhook, cron, interval, emailReadImap nodes The Docker build cache was serving an old database without the trigger detection fix, causing these nodes to incorrectly show isTrigger: false in the MCP tool. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 58c536b..3f3e28d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,6 +40,7 @@ RUN --mount=type=cache,target=/root/.npm \ COPY --from=builder /app/dist ./dist # Copy pre-built database and required files +# Cache bust: 2025-07-06-trigger-fix-v3 - includes is_trigger=true for webhook,cron,interval,emailReadImap COPY data/nodes.db ./data/ COPY src/database/schema-optimized.sql ./src/database/ COPY .env.example ./