diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..136ca00 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,33 @@ +# Version control +.git +.gitignore + +# Build artifacts (will be built inside container) +build/bin +build/gen + +# Profiling data +*.prof + +# Node modules (installed inside container) +node_modules/ + +# Python cache +__pycache__/ +*.pyc + +# Generated fuzzing config +**/fuzz_config/ + +# IDE and editor files +.vscode/ +.idea/ +*.swp +*.swo + +# Environment files +.env + +# Documentation (not needed in image) +LICENSE +CONTRIBUTORS.md