From 7150b7768d3f4bc4fcbfb53866e0fc0abaaa0fbf Mon Sep 17 00:00:00 2001 From: Bentlybro Date: Thu, 12 Feb 2026 11:53:57 +0000 Subject: [PATCH] fix: Make Dockerfile check case-insensitive --- autogpt_platform/backend/backend/blocks/claude_code.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogpt_platform/backend/backend/blocks/claude_code.py b/autogpt_platform/backend/backend/blocks/claude_code.py index e212733ba5..db76881828 100644 --- a/autogpt_platform/backend/backend/blocks/claude_code.py +++ b/autogpt_platform/backend/backend/blocks/claude_code.py @@ -616,7 +616,7 @@ class ClaudeCodeBlock(Block): file_path_lower = file_path.lower() is_text = any( file_path_lower.endswith(ext) for ext in text_extensions - ) or file_path.endswith("Dockerfile") + ) or file_path_lower.endswith("dockerfile") # Check if it's a binary file we should extract is_binary = any(