Skip to content

Commit 2b49423

Browse files
committed
add .dockerignore
1 parent bf89827 commit 2b49423

File tree

1 file changed

+76
-0
lines changed

1 file changed

+76
-0
lines changed

.dockerignore

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
# Environment variables
2+
.env
3+
.env.*
4+
5+
# Python
6+
__pycache__/
7+
*.py[cod]
8+
*$py.class
9+
*.so
10+
.Python
11+
.pytest_cache/
12+
.coverage
13+
.coverage.*
14+
coverage.xml
15+
*.cover
16+
*.log
17+
.mypy_cache/
18+
.dmypy.json
19+
dmypy.json
20+
.ruff_cache/
21+
22+
# Virtual environments
23+
.venv/
24+
venv/
25+
ENV/
26+
env/
27+
28+
# UV cache
29+
.uv/
30+
31+
# IDE
32+
.vscode/
33+
.idea/
34+
*.swp
35+
*.swo
36+
*~
37+
.DS_Store
38+
39+
# Git
40+
.git/
41+
.gitignore
42+
.gitattributes
43+
44+
# CI/CD
45+
.github/
46+
.gitlab-ci.yml
47+
48+
# Documentation (optional - remove if needed in container)
49+
README.md
50+
dev_tools/
51+
52+
# Testing
53+
tests/
54+
pytest.ini
55+
tox.ini
56+
.tox/
57+
58+
# Build artifacts
59+
build/
60+
dist/
61+
*.egg-info/
62+
.eggs/
63+
64+
# Docker
65+
Dockerfile
66+
.dockerignore
67+
docker-compose*.yml
68+
69+
# Scripts (optional - remove if needed in container)
70+
scripts/
71+
72+
# Temporary files
73+
tmp/
74+
temp/
75+
*.tmp
76+
*.bak

0 commit comments

Comments
 (0)