Skip to content

Commit c0611c6

Browse files
committed
Add .dockerignore
1 parent 0088a08 commit c0611c6

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

.dockerignore

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Build artifacts
2+
**/bin/
3+
**/obj/
4+
5+
# User-specific files
6+
**/*.user
7+
**/*.suo
8+
9+
# IDE files
10+
.vscode/
11+
.vs/
12+
13+
# Git
14+
.git/
15+
.gitignore
16+
17+
# Documentation
18+
README.md
19+
LICENSE
20+
21+
# Docker files (if not needed in context)
22+
Dockerfile*
23+
.dockerignore
24+
25+
# Test data (exclude if not required in the image)
26+
**/testdata/
27+
28+
# Temporary files
29+
*.tmp
30+
*.log
31+
32+
# NuGet packages
33+
packages/
34+
**/*.nupkg
35+
36+
# OS generated files
37+
.DS_Store
38+
Thumbs.db

0 commit comments

Comments
 (0)