Skip to content

Commit 88a9148

Browse files
committed
dockerignore
1 parent 78c02dd commit 88a9148

File tree

1 file changed

+44
-1
lines changed

1 file changed

+44
-1
lines changed

.dockerignore

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

0 commit comments

Comments
 (0)