fix: force Docker to use updated database with trigger fixes
- 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 <noreply@anthropic.com>
This commit is contained in:
@@ -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 ./
|
||||
|
||||
Reference in New Issue
Block a user