fix: Make Dockerfile check case-insensitive

This commit is contained in:
Bentlybro
2026-02-12 11:53:57 +00:00
parent 8c95b03636
commit 7150b7768d

View File

@@ -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(