Skip to content

Commit 09b7c9c

Browse files
Add .dockerignore for optimized Docker builds
1 parent 0b27b13 commit 09b7c9c

1 file changed

Lines changed: 63 additions & 0 deletions

File tree

.dockerignore

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# Version control
2+
.git
3+
.gitignore
4+
5+
# Documentation
6+
*.md
7+
!README.md
8+
docs/
9+
10+
# Python
11+
__pycache__/
12+
*.py[cod]
13+
*$py.class
14+
*.so
15+
.Python
16+
build/
17+
develop-eggs/
18+
dist/
19+
downloads/
20+
eggs/
21+
.eggs/
22+
lib/
23+
lib64/
24+
parts/
25+
sdist/
26+
var/
27+
wheels/
28+
*.egg-info/
29+
.installed.cfg
30+
*.egg
31+
32+
# Virtual environments
33+
venv/
34+
env/
35+
ENV/
36+
env.bak/
37+
venv.bak/
38+
39+
# IDE
40+
.vscode/
41+
.idea/
42+
*.swp
43+
*.swo
44+
*~
45+
46+
# OS
47+
.DS_Store
48+
Thumbs.db
49+
50+
# Logs
51+
logs/
52+
*.log
53+
54+
# Testing
55+
.pytest_cache/
56+
.coverage
57+
htmlcov/
58+
.tox/
59+
60+
# Docker
61+
Dockerfile*
62+
docker-compose*
63+
.dockerignore

0 commit comments

Comments
 (0)