Diff of /.dockerignore [000000] .. [b9e282]

Switch to unified view

a b/.dockerignore
1
# -- Docker-specific ignores --
2
3
# bionemo related
4
results/
5
6
# we copy over docs/ into the image for notebook testing, but can skip the images for space
7
docs/docs/assets
8
9
# -- .gitignore settings --
10
docs/site/
11
12
# Local configs
13
.gitconfig
14
.bash_history
15
.vscode-server
16
.gnupg
17
18
# Lightning and project output files
19
lightning_logs
20
21
# Byte-compiled / optimized / DLL files
22
__pycache__/
23
*.py[cod]
24
*$py.class
25
26
# C extensions
27
*.so
28
29
# Distribution / packaging
30
.Python
31
build/
32
develop-eggs/
33
dist/
34
downloads/
35
eggs/
36
.eggs/
37
lib/
38
lib64/
39
parts/
40
sdist/
41
var/
42
*.egg-info/
43
.installed.cfg
44
*.egg
45
46
# PyInstaller
47
#  Usually these files are written by a python script from a template
48
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
49
*.manifest
50
*.spec
51
52
# Installer logs
53
pip-log.txt
54
pip-delete-this-directory.txt
55
56
# Unit test / coverage reports
57
htmlcov/
58
.tox/
59
.nox/
60
.coverage
61
.coverage.*
62
.cache
63
.dotnet
64
.local
65
nosetests.xml
66
coverage.xml
67
*.cover
68
*.py,cover
69
.hypothesis/
70
.pytest_cache/
71
MNISTCustom/
72
73
# Python debugging
74
.pdbhistory
75
76
# Translations
77
*.mo
78
*.pot
79
80
# Django stuff:
81
*.log
82
local_settings.py
83
db.sqlite3
84
85
# Flask stuff:
86
instance/
87
.webassets-cache
88
89
# Scrapy stuff:
90
.scrapy
91
92
# Sphinx documentation
93
docs/_build/
94
docs/_static/
95
96
# PyBuilder
97
target/
98
99
# Jupyter Notebook
100
.ipynb_checkpoints
101
102
# IPython
103
profile_default/
104
ipython_config.py
105
106
# pyenv
107
.python-version
108
109
# celery beat schedule file
110
celerybeat-schedule
111
112
# dotenv
113
.env
114
.env.*
115
.ssh
116
.ssh/*
117
.triton
118
.triton/*
119
120
# virtualenv
121
venv/
122
ENV/
123
env/
124
.env/
125
.venv/
126
.ENV/
127
.envrc
128
python_env/
129
venv.bak/
130
venv.bak2/
131
132
# Spyder project settings
133
.spyderproject
134
.spyproject
135
136
# Rope project settings
137
.ropeproject
138
139
# mkdocs documentation
140
/site
141
142
# mypy
143
.mypy_cache/
144
.dmypy.json
145
dmypy.json
146
147
# Pyre type checker
148
.pyre/
149
150
# PyCharm
151
.idea/
152
*.iml
153
*.ipr
154
*.iws
155
156
# Temporary files
157
*.swp
158
*.swo
159
*~
160
*#
161
.viminfo
162
.lesshst
163
164
# macOS
165
.DS_Store
166
167
# Build system
168
.pytest_cache/
169
__pycache__/
170
*.pyc
171
172
# Ignore local directories
173
local/
174
175
# Logs
176
*.log
177
178
# Tests
179
tests/__pycache__/
180
181
# Generated files
182
*.egg-info/
183
.eggs/
184
185
# Build files
186
build/
187
dist/
188
189
# Coverage reports
190
.coverage
191
coverage.xml
192
193
# Jupyter Notebook
194
.ipynb_checkpoints
195
196
# System files
197
.DS_Store
198
Thumbs.db
199
200
.python_history