Skip to content

Commit 6a5bbea

Browse files
committed
add .dockerignore
1 parent fb86ac2 commit 6a5bbea

1 file changed

Lines changed: 75 additions & 0 deletions

File tree

.dockerignore

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
# Python Build Artifacts
2+
.Python
3+
**/__pycache__/
4+
**/*.py[cod]
5+
**/build/
6+
**/develop-eggs/
7+
**/dist/
8+
**/downloads/
9+
**/eggs/
10+
**/.eggs/
11+
**/lib/
12+
**/lib64/
13+
**/parts/
14+
**/sdist/
15+
**/var/
16+
**/wheels/
17+
**/*.egg-info/
18+
**/.installed.cfg
19+
**/*.egg
20+
**/MANIFEST
21+
22+
# Test & Coverage Files
23+
.pytest_cache/
24+
.ruff_cache/
25+
.tox/
26+
.nox/
27+
coverage.xml
28+
.coverage
29+
.coverage.*
30+
htmlcov/
31+
junit-results.xml
32+
tests/
33+
34+
# Version Control
35+
.git/
36+
.gitignore
37+
.gitattributes
38+
.github/
39+
40+
# Editor / IDE Files
41+
.ipynb_checkpoints
42+
.idea/
43+
.vscode/
44+
*.swp
45+
*.swo
46+
*~
47+
48+
# Virtual Environments
49+
venv/
50+
.venv/
51+
env/
52+
.env/
53+
54+
# Docker Files
55+
.dockerignore
56+
docker
57+
docker/Dockerfile
58+
59+
# Singularity files
60+
singularity
61+
*sif
62+
63+
# Local Config Files
64+
.env
65+
*.env.*
66+
*.pem
67+
*.key
68+
69+
# OS files
70+
.DS_Store
71+
Thumbs.db
72+
73+
# Documentation
74+
doc/
75+
tutorials/

0 commit comments

Comments
 (0)