Skip to content

Commit 5fe9c62

Browse files
committed
dockerignore
1 parent 990f0e2 commit 5fe9c62

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed

.dockerignore

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

0 commit comments

Comments
 (0)