Skip to content

Commit 1478b9d

Browse files
committed
dockerignore
1 parent 990f0e2 commit 1478b9d

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed

.dockerignore

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,52 @@
1+
# More info: https://docs.docker.com/engine/reference/builder/#dockerignore-file
2+
3+
# Build artifacts
14
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)