File tree Expand file tree Collapse file tree 1 file changed +53
-0
lines changed
Expand file tree Collapse file tree 1 file changed +53
-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
14bin /
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+ README.downstream
20+ CONTRIBUTING.md
21+ * .md
22+ ! README.md
23+
24+ # Examples and contributions (not needed for build)
25+ contrib /
26+ hack /
27+ network_definitions /
28+ proto /
29+
30+ # CI/CD and development files
31+ .git /
32+ .gitignore
33+ .gitattributes
34+ LICENSE
35+ OWNERS
36+ renovate.json
37+ Makefile
38+ scripts /
39+
40+ # Dockerfiles (not needed in build context)
41+ Dockerfile *
42+ ! Dockerfile
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
You can’t perform that action at this time.
0 commit comments