File tree Expand file tree Collapse file tree 1 file changed +47
-1
lines changed Expand file tree Collapse file tree 1 file changed +47
-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+ README.downstream
20+ CONTRIBUTING.md
21+ * .md
22+ ! README.md
23+
24+ # CI/CD and development files
25+ .git /
26+ .gitignore
27+ .gitattributes
28+ LICENSE
29+ OWNERS
30+ renovate.json
31+ Makefile
32+ scripts /
33+
34+ # Dockerfiles (not needed in build context)
35+ Dockerfile *
36+ ! Dockerfile
37+
38+ # IDE and editor files
39+ .vscode /
40+ .idea /
41+ * .swp
42+ * .swo
43+ * ~
44+ .DS_Store
45+
46+ # Temporary files
47+ _tmp /
48+ * .tmp
49+ * .log
You can’t perform that action at this time.
0 commit comments