File tree Expand file tree Collapse file tree 1 file changed +44
-1
lines changed Expand file tree Collapse file tree 1 file changed +44
-1
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+ plugin-backend
16. /web /node_modules
27. /web /dist
3- . /plugin-backend
8+ . /web /coverage /
9+ . /web /cypress /screenshots /
10+ . /web /cypress /videos /
11+
12+ # Test files and directories
13+ ** /* _test.go
14+ cover * .out
15+ test.out
16+
17+ # Documentation
18+ ** /docs /
19+ CONTRIBUTING.md
20+ * .md
21+ ! README.md
22+
23+ # CI/CD and development files
24+ ** /.git /
25+ .gitignore
26+ .gitattributes
27+ OWNERS
28+ renovate.json
29+ Makefile
30+
31+ # Dockerfiles (not needed in build context)
32+ Dockerfile *
33+ ! Dockerfile
34+
35+ # IDE and editor files
36+ ** /.vscode /
37+ ** /.idea /
38+ * .swp
39+ * .swo
40+ * ~
41+ .DS_Store
42+
43+ # Temporary files
44+ ** /_tmp /
45+ * .tmp
46+ * .log
You can’t perform that action at this time.
0 commit comments