Skip to content

Commit 7c69a95

Browse files
committed
dockerignore
1 parent bd1c0d0 commit 7c69a95

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+
*.o
6+
*.tar
7+
*.tgz
8+
9+
# Test files and directories
10+
e2e/
11+
*_test.go
12+
cover*.out
13+
test.out
14+
15+
# Documentation
16+
docs/
17+
CONTRIBUTING.md
18+
*.md
19+
!README.md
20+
21+
# Examples and deployments (not needed for build)
22+
examples/
23+
deployments/
24+
25+
# Scripts (not needed for build)
26+
scripts/
27+
28+
# Build tools (not needed in image)
29+
protoc/
30+
31+
# Test artifacts
32+
capture.pcap
33+
ebpf-agent.tar
34+
35+
# CI/CD and development files
36+
.git/
37+
.gitignore
38+
.gitattributes
39+
OWNERS
40+
renovate.json
41+
Containerfile.*
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)