alidenewade commited on
Commit
9da09f6
·
verified ·
1 Parent(s): c2527b4

Update .dockerignore

Browse files
Files changed (1) hide show
  1. .dockerignore +72 -9
.dockerignore CHANGED
@@ -1,13 +1,76 @@
1
- # Ignore Git files
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  .git/
3
  .gitignore
4
 
5
- # Ignore Python cache files
6
- __pycache__/
7
- *.pyc
8
- *.pyo
9
 
10
- # Ignore virtual environment folders
11
- venv/
12
- .venv/
13
- env/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ # IDEs
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
 
57
+ # Logs
58
+ *.log
59
+
60
+ # Temporary files
61
+ .tmp/
62
+ temp/
63
+
64
+ # Jupyter Notebooks
65
+ .ipynb_checkpoints/
66
+ *.ipynb
67
+
68
+ # pytest
69
+ .pytest_cache/
70
+ .coverage
71
+ htmlcov/
72
+
73
+ # mypy
74
+ .mypy_cache/
75
+ .dmypy.json
76
+ dmypy.json