Skip to content

Commit f02a5ab

Browse files
committed
dockerignore
1 parent 6613e89 commit f02a5ab

File tree

1 file changed

+57
-1
lines changed

1 file changed

+57
-1
lines changed

.dockerignore

Lines changed: 57 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,60 @@
11
# More info: https://docs.docker.com/engine/reference/builder/#dockerignore-file
2-
# Ignore build and test binaries.
2+
3+
# Build artifacts
34
bin/
45
testbin/
6+
manager
7+
*.o
8+
*.tar
9+
*.tgz
10+
11+
# Test files and directories
12+
*_test.go
13+
cover*.out
14+
test.out
15+
e2e/
16+
17+
# Documentation
18+
docs/
19+
CONTRIBUTING.md
20+
DEVELOPMENT.md
21+
FAQ.md
22+
RELEASE.md
23+
*.md
24+
!README.md
25+
26+
# Examples and samples (not needed for build)
27+
hack/
28+
helm/
29+
releases/
30+
test-assets/
31+
_tmp/
32+
33+
# CI/CD and development files
34+
.git/
35+
.gitignore
36+
.gitattributes
37+
OWNERS
38+
renovate.json
39+
Makefile
40+
PROJECT
41+
requirements.txt
42+
scripts/
43+
44+
# Dockerfiles (not needed in build context)
45+
Dockerfile*
46+
!Dockerfile
47+
bundle.Dockerfile*
48+
catalog.Dockerfile*
49+
50+
# IDE and editor files
51+
.vscode/
52+
.idea/
53+
*.swp
54+
*.swo
55+
*~
56+
.DS_Store
57+
58+
# Temporary files
59+
*.tmp
60+
*.log

0 commit comments

Comments
 (0)