Skip to content

Commit 2d758fc

Browse files
committed
Add dockerignore file
1 parent 396d011 commit 2d758fc

File tree

1 file changed

+217
-0
lines changed

1 file changed

+217
-0
lines changed

.dockerignore

Lines changed: 217 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,217 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### VisualStudioCode template
3+
.vscode/*
4+
!.vscode/settings.json
5+
!.vscode/tasks.json
6+
!.vscode/launch.json
7+
!.vscode/extensions.json
8+
9+
### Python template
10+
# Byte-compiled / optimized / DLL files
11+
__pycache__/
12+
*.py[cod]
13+
*$py.class
14+
15+
# C extensions
16+
*.so
17+
18+
# Distribution / packaging
19+
.Python
20+
build/
21+
develop-eggs/
22+
dist/
23+
downloads/
24+
eggs/
25+
.eggs/
26+
lib/
27+
lib64/
28+
parts/
29+
sdist/
30+
var/
31+
wheels/
32+
pip-wheel-metadata/
33+
share/python-wheels/
34+
*.egg-info/
35+
.installed.cfg
36+
*.egg
37+
MANIFEST
38+
39+
# PyInstaller
40+
# Usually these files are written by a python script from a template
41+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
42+
*.manifest
43+
*.spec
44+
45+
# Installer logs
46+
pip-log.txt
47+
pip-delete-this-directory.txt
48+
49+
# Unit test / coverage reports
50+
htmlcov/
51+
.tox/
52+
.nox/
53+
.coverage
54+
.coverage.*
55+
.cache
56+
nosetests.xml
57+
coverage.xml
58+
*.cover
59+
.hypothesis/
60+
.pytest_cache/
61+
62+
# Translations
63+
*.mo
64+
*.pot
65+
66+
# Django stuff:
67+
*.log
68+
local_settings.py
69+
db.sqlite3
70+
71+
# Flask stuff:
72+
instance/
73+
.webassets-cache
74+
75+
# Scrapy stuff:
76+
.scrapy
77+
78+
# Sphinx documentation
79+
docs/_build/
80+
81+
# PyBuilder
82+
target/
83+
84+
# Jupyter Notebook
85+
.ipynb_checkpoints
86+
87+
# IPython
88+
profile_default/
89+
ipython_config.py
90+
91+
# pyenv
92+
.python-version
93+
94+
# pipenv
95+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
96+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
97+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
98+
# install all needed dependencies.
99+
#Pipfile.lock
100+
101+
# celery beat schedule file
102+
celerybeat-schedule
103+
104+
# SageMath parsed files
105+
*.sage.py
106+
107+
# Environments
108+
.env
109+
.venv
110+
env/
111+
venv/
112+
ENV/
113+
env.bak/
114+
venv.bak/
115+
116+
# Spyder project settings
117+
.spyderproject
118+
.spyproject
119+
120+
# Rope project settings
121+
.ropeproject
122+
123+
# mkdocs documentation
124+
/site
125+
126+
# mypy
127+
.mypy_cache/
128+
.dmypy.json
129+
dmypy.json
130+
131+
# Pyre type checker
132+
.pyre/
133+
134+
### JetBrains template
135+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
136+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
137+
138+
# User-specific stuff
139+
.idea/**/workspace.xml
140+
.idea/**/tasks.xml
141+
.idea/**/usage.statistics.xml
142+
.idea/**/dictionaries
143+
.idea/**/shelf
144+
145+
# Generated files
146+
.idea/**/contentModel.xml
147+
148+
# Sensitive or high-churn files
149+
.idea/**/dataSources/
150+
.idea/**/dataSources.ids
151+
.idea/**/dataSources.local.xml
152+
.idea/**/sqlDataSources.xml
153+
.idea/**/dynamic.xml
154+
.idea/**/uiDesigner.xml
155+
.idea/**/dbnavigator.xml
156+
157+
# Gradle
158+
.idea/**/gradle.xml
159+
.idea/**/libraries
160+
161+
# Gradle and Maven with auto-import
162+
# When using Gradle or Maven with auto-import, you should exclude module files,
163+
# since they will be recreated, and may cause churn. Uncomment if using
164+
# auto-import.
165+
# .idea/modules.xml
166+
# .idea/*.iml
167+
# .idea/modules
168+
# *.iml
169+
# *.ipr
170+
171+
# CMake
172+
cmake-build-*/
173+
174+
# Mongo Explorer plugin
175+
.idea/**/mongoSettings.xml
176+
177+
# File-based project format
178+
*.iws
179+
180+
# IntelliJ
181+
out/
182+
183+
# mpeltonen/sbt-idea plugin
184+
.idea_modules/
185+
186+
# JIRA plugin
187+
atlassian-ide-plugin.xml
188+
189+
# Cursive Clojure plugin
190+
.idea/replstate.xml
191+
192+
# Crashlytics plugin (for Android Studio and IntelliJ)
193+
com_crashlytics_export_strings.xml
194+
crashlytics.properties
195+
crashlytics-build.properties
196+
fabric.properties
197+
198+
# Editor-based Rest Client
199+
.idea/httpRequests
200+
201+
# Android studio 3.1+ serialized cache file
202+
.idea/caches/build_file_checksums.ser
203+
204+
### VirtualEnv template
205+
# Virtualenv
206+
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
207+
.Python
208+
[Bb]in
209+
[Ii]nclude
210+
[Ll]ib
211+
[Ll]ib64
212+
[Ll]ocal
213+
[Ss]cripts
214+
pyvenv.cfg
215+
.venv
216+
pip-selfcheck.json
217+

0 commit comments

Comments
 (0)