Skip to content

Commit 2694629

Browse files
committed
dockerignore
1 parent 51ea4da commit 2694629

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

.dockerignore

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# More info: https://docs.docker.com/engine/reference/builder/#dockerignore-file
2+
3+
# Build artifacts
4+
**/bin/
5+
**/build/
6+
*.tar
7+
*.tgz
8+
9+
# Test files and directories
10+
**/e2e/
11+
**/e2e-logs/
12+
**/*_test.go
13+
cover*.out
14+
test.out
15+
16+
# Documentation
17+
**/docs/
18+
**/img/
19+
CONTRIBUTING.md
20+
*.md
21+
!README.md
22+
23+
# User output directory
24+
**/output/
25+
26+
# Local config files
27+
kubeconfig
28+
29+
# Test artifacts
30+
cli-e2e-img.tar
31+
32+
# CI/CD and development files
33+
**/.git/
34+
.gitignore
35+
.gitattributes
36+
OWNERS
37+
renovate.json
38+
39+
# Dockerfiles (not needed in build context)
40+
Dockerfile*
41+
!Dockerfile
42+
43+
# IDE and editor files
44+
**/.vscode/
45+
**/.idea/
46+
*.swp
47+
*.swo
48+
*~
49+
.DS_Store
50+
51+
# Temporary files
52+
*.tmp
53+
*.log
54+

0 commit comments

Comments
 (0)