File tree Expand file tree Collapse file tree 1 file changed +57
-1
lines changed Expand file tree Collapse file tree 1 file changed +57
-1
lines changed Original file line number Diff line number Diff line change 11# More info: https://docs.docker.com/engine/reference/builder/#dockerignore-file
2- # Ignore build and test binaries.
2+
3+ # Build artifacts
34bin /
45testbin /
6+ manager
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+ DEVELOPMENT.md
21+ FAQ.md
22+ RELEASE.md
23+ * .md
24+ ! README.md
25+
26+ # Examples and samples (not needed for build)
27+ hack /
28+ helm /
29+ releases /
30+ test-assets /
31+ _tmp /
32+
33+ # CI/CD and development files
34+ .git /
35+ .gitignore
36+ .gitattributes
37+ OWNERS
38+ renovate.json
39+ Makefile
40+ PROJECT
41+ requirements.txt
42+ scripts /
43+
44+ # Dockerfiles (not needed in build context)
45+ Dockerfile *
46+ ! Dockerfile
47+ bundle.Dockerfile *
48+ catalog.Dockerfile *
49+
50+ # IDE and editor files
51+ .vscode /
52+ .idea /
53+ * .swp
54+ * .swo
55+ * ~
56+ .DS_Store
57+
58+ # Temporary files
59+ * .tmp
60+ * .log
You can’t perform that action at this time.
0 commit comments