Skip to content

Commit 7229515

Browse files
committed
chore(dockerignore): update .dockerignore to include common exclusions for IDEs, caches, logs, OS-specific files, and Docker-related patterns
1 parent 6bd4f51 commit 7229515

File tree

1 file changed

+24
-4
lines changed

1 file changed

+24
-4
lines changed

.dockerignore

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,33 @@
1-
.git/
2-
.idea/
3-
.venv/
41
bin/
52
ci/
63
tests/
74

5+
# IDE
6+
.idea/
7+
8+
# git
9+
.git/
10+
.gitignore
11+
.gitkeep
12+
13+
# Python cache
814
**/.mypy_cache/
915
**/.pytest_cache/
1016
**/__pycache__/
1117
**/*.pyc
1218

13-
**/Dockerfile
19+
# Virtual environment
20+
env/
21+
venv/
22+
.venv/
23+
*.egg-info/
24+
25+
# Dockerfiles
26+
**/Dockerfile*
27+
28+
# Logs
29+
*.log
30+
31+
# OS-specific files
32+
.DS_Store
33+
Thumbs.db

0 commit comments

Comments
 (0)