Skip to content

Commit 3529f66

Browse files
committed
dockerignore
1 parent 78c02dd commit 3529f66

File tree

1 file changed

+47
-1
lines changed

1 file changed

+47
-1
lines changed

.dockerignore

Lines changed: 47 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,49 @@
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

0 commit comments

Comments
 (0)