File tree Expand file tree Collapse file tree 1 file changed +54
-0
lines changed
Expand file tree Collapse file tree 1 file changed +54
-0
lines changed Original file line number Diff line number Diff line change 1+ # More info: https://docs.docker.com/engine/reference/builder/#dockerignore-file
2+
3+ # Build artifacts
4+ ** /bin /
5+ * .o
6+ * .tar
7+ * .tgz
8+
9+ # Test files and directories
10+ ** /e2e /
11+ ** /* _test.go
12+ cover * .out
13+ test.out
14+
15+ # Documentation
16+ ** /docs /
17+ CONTRIBUTING.md
18+ * .md
19+ ! README.md
20+
21+ # Examples and deployments (not needed for build)
22+ ** /examples /
23+ ** /deployments /
24+
25+ # Scripts (not needed for build)
26+ ** /scripts /
27+
28+ # Build tools (not needed in image)
29+ ** /protoc /
30+
31+ # Test artifacts
32+ capture.pcap
33+ ebpf-agent.tar
34+
35+ # CI/CD and development files
36+ ** /.git /
37+ .gitignore
38+ .gitattributes
39+ OWNERS
40+ renovate.json
41+ Containerfile. *
42+
43+ # IDE and editor files
44+ ** /.vscode /
45+ ** /.idea /
46+ * .swp
47+ * .swo
48+ * ~
49+ .DS_Store
50+
51+ # Temporary files
52+ * .tmp
53+ * .log
54+
You can’t perform that action at this time.
0 commit comments