File tree Expand file tree Collapse file tree 1 file changed +55
-0
lines changed
Expand file tree Collapse file tree 1 file changed +55
-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+ Makefile
42+ Containerfile. *
43+
44+ # IDE and editor files
45+ .vscode /
46+ .idea /
47+ * .swp
48+ * .swo
49+ * ~
50+ .DS_Store
51+
52+ # Temporary files
53+ * .tmp
54+ * .log
55+
You can’t perform that action at this time.
0 commit comments