Skip to content

Commit 18f5034

Browse files
committed
dockerignore
1 parent 990f0e2 commit 18f5034

File tree

1 file changed

+52
-1
lines changed

1 file changed

+52
-1
lines changed

.dockerignore

Lines changed: 52 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,52 @@
1-
bin/
1+
# More info: https://docs.docker.com/engine/reference/builder/#dockerignore-file
2+
3+
# Build artifacts
4+
**/bin/
5+
flowlogs-pipeline
6+
confgenerator
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+
*.md
21+
!README.md
22+
23+
# Examples and contributions (not needed for build)
24+
**/contrib/
25+
**/hack/
26+
**/network_definitions/
27+
proto/
28+
29+
# CI/CD and development files
30+
**/.git/
31+
.gitignore
32+
.gitattributes
33+
OWNERS
34+
renovate.json
35+
Makefile
36+
**/scripts/
37+
38+
# Dockerfiles (not needed in build context)
39+
Dockerfile*
40+
!Dockerfile
41+
42+
# IDE and editor files
43+
**/.vscode/
44+
**/.idea/
45+
*.swp
46+
*.swo
47+
*~
48+
.DS_Store
49+
50+
# Temporary files
51+
*.tmp
52+
*.log

0 commit comments

Comments
 (0)