File tree Expand file tree Collapse file tree 1 file changed +61
-1
lines changed
Expand file tree Collapse file tree 1 file changed +61
-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+ README.downstream
20+ CONTRIBUTING.md
21+ DEVELOPMENT.md
22+ FAQ.md
23+ RELEASE.md
24+ * .md
25+ ! README.md
26+
27+ # Examples and samples (not needed for build)
28+ hack /
29+ helm /
30+ bundle /
31+ catalog /
32+ releases /
33+ test-assets /
34+ _tmp /
35+
36+ # CI/CD and development files
37+ .git /
38+ .gitignore
39+ .gitattributes
40+ LICENSE
41+ OWNERS
42+ renovate.json
43+ Makefile
44+ PROJECT
45+ requirements.txt
46+ scripts /
47+
48+ # Dockerfiles (not needed in build context)
49+ Dockerfile *
50+ ! Dockerfile
51+ bundle.Dockerfile *
52+ catalog.Dockerfile *
53+
54+ # IDE and editor files
55+ .vscode /
56+ .idea /
57+ * .swp
58+ * .swo
59+ * ~
60+ .DS_Store
61+
62+ # Temporary files
63+ * .tmp
64+ * .log
You can’t perform that action at this time.
0 commit comments