Skip to content

Commit 00a1be1

Browse files
committed
Create .dockerignore
1 parent f1219ff commit 00a1be1

File tree

1 file changed

+97
-0
lines changed

1 file changed

+97
-0
lines changed
Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
build/
8+
develop-eggs/
9+
dist/
10+
downloads/
11+
eggs/
12+
.eggs/
13+
lib/
14+
lib64/
15+
parts/
16+
sdist/
17+
var/
18+
wheels/
19+
*.egg-info/
20+
.installed.cfg
21+
*.egg
22+
MANIFEST
23+
24+
# Virtual environments
25+
.env
26+
.venv
27+
env/
28+
venv/
29+
ENV/
30+
env.bak/
31+
venv.bak/
32+
33+
# IDE
34+
.vscode/
35+
.idea/
36+
*.swp
37+
*.swo
38+
*~
39+
40+
# OS
41+
.DS_Store
42+
.DS_Store?
43+
._*
44+
.Spotlight-V100
45+
.Trashes
46+
ehthumbs.db
47+
Thumbs.db
48+
49+
# Git
50+
.git/
51+
.gitignore
52+
53+
# Documentation
54+
README.md
55+
*.md
56+
docs/
57+
58+
# Testing
59+
.pytest_cache/
60+
.coverage
61+
htmlcov/
62+
.tox/
63+
.nox/
64+
coverage.xml
65+
*.cover
66+
.hypothesis/
67+
68+
# Logs
69+
*.log
70+
logs/
71+
72+
# Temporary files
73+
*.tmp
74+
*.temp
75+
.cache/
76+
77+
# Docker
78+
Dockerfile*
79+
docker-compose*
80+
.dockerignore
81+
82+
# Development files
83+
.env.local
84+
.env.development
85+
.env.test
86+
.env.production
87+
88+
# Build artifacts
89+
*.slim
90+
slim.report.json
91+
92+
# Node modules (if any)
93+
node_modules/
94+
95+
# Backup files
96+
*.bak
97+
*.backup

0 commit comments

Comments
 (0)