Skip to content

Commit 7428e60

Browse files
committed
dockerignore
1 parent 51ea4da commit 7428e60

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

.dockerignore

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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+
README.downstream
20+
CONTRIBUTING.md
21+
*.md
22+
!README.md
23+
24+
# User output directory
25+
output/
26+
27+
# Local config files
28+
kubeconfig
29+
30+
# Test artifacts
31+
cli-e2e-img.tar
32+
33+
# CI/CD and development files
34+
.git/
35+
.gitignore
36+
.gitattributes
37+
LICENSE
38+
OWNERS
39+
renovate.json
40+
41+
# Dockerfiles (not needed in build context)
42+
Dockerfile*
43+
!Dockerfile
44+
45+
# IDE and editor files
46+
.vscode/
47+
.idea/
48+
*.swp
49+
*.swo
50+
*~
51+
.DS_Store
52+
53+
# Temporary files
54+
*.tmp
55+
*.log
56+

0 commit comments

Comments
 (0)