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