File tree 2 files changed +162
-5
lines changed
2 files changed +162
-5
lines changed Original file line number Diff line number Diff line change
1
+ # Include any files or directories that you don't want to be copied to your
2
+ # container here (e.g., local build artifacts, temporary files, etc.).
3
+ #
4
+ # For more help, visit the .dockerignore file reference guide at
5
+ # https://docs.docker.com/engine/reference/builder/#dockerignore-file
6
+
7
+ ** /.DS_Store
8
+ ** /__pycache__
9
+ ** /.venv
10
+ ** /.classpath
11
+ ** /.dockerignore
12
+ ** /.env
13
+ ** /.git
14
+ ** /.gitignore
15
+ ** /.project
16
+ ** /.settings
17
+ ** /.toolstarget
18
+ ** /.vs
19
+ ** /.vscode
20
+ ** /* . * proj.user
21
+ ** /* .dbmdl
22
+ ** /* .jfm
23
+ ** /bin
24
+ ** /charts
25
+ ** /docker-compose *
26
+ ** /compose *
27
+ ** /Dockerfile *
28
+ ** /* .Dockerfile
29
+ ** /node_modules
30
+ ** /npm-debug.log
31
+ ** /obj
32
+ ** /secrets.dev.yaml
33
+ ** /values.dev.yaml
34
+ LICENSE
35
+ README.md
36
+
37
+ # Byte-compiled / optimized / DLL files
38
+ __pycache__ /
39
+ * .py [cod ]
40
+ * $py.class
41
+
42
+ # C extensions
43
+ * .so
44
+
45
+ # Distribution / packaging
46
+ .Python
47
+ build /
48
+ develop-eggs /
49
+ dist /
50
+ downloads /
51
+ eggs /
52
+ lib /
53
+ lib64 /
54
+ parts /
55
+ sdist /
56
+ var /
57
+ * .egg-info /
58
+ .installed.cfg
59
+ * .egg
60
+
61
+ # PyInstaller
62
+ # Usually these files are written by a python script from a template
63
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
64
+ * .manifest
65
+ * .spec
66
+
67
+ # Installer logs
68
+ pip-log.txt
69
+ pip-delete-this-directory.txt
70
+
71
+ # Unit test / coverage reports
72
+ htmlcov /
73
+ .tox /
74
+ .nox /
75
+ .coverage
76
+ .coverage. *
77
+ .cache
78
+ nosetests.xml
79
+ coverage.xml
80
+ * .cover
81
+ * .log
82
+
83
+ # Translations
84
+ * .mo
85
+ * .pot
86
+
87
+ # Django stuff:
88
+ * .log
89
+ local_settings.py
90
+ db.sqlite3
91
+
92
+ # Flask stuff:
93
+ instance /
94
+ .webassets-cache
95
+
96
+ # Scrapy stuff:
97
+ .scrapy
98
+
99
+ # Sphinx documentation
100
+ docs /_build /
101
+
102
+ # PyBuilder
103
+ target /
104
+
105
+ # Jupyter Notebook
106
+ .ipynb_checkpoints
107
+
108
+ # IPython
109
+ profile_default /
110
+ ipython_config.py
111
+
112
+ # pyenv
113
+ .python-version
114
+
115
+ # celery beat schedule file
116
+ celerybeat-schedule
117
+
118
+ # SageMath parsed files
119
+ * .sage.py
120
+
121
+ # Environments
122
+ .env
123
+ .venv
124
+ env /
125
+ venv /
126
+ ENV /
127
+ env.bak /
128
+ venv.bak /
129
+
130
+ # Spyder project settings
131
+ .spyderproject
132
+ .spyproject
133
+
134
+ # Rope project settings
135
+ .ropeproject
136
+
137
+ # mkdocs documentation
138
+ /site
139
+
140
+ # mypy
141
+ .mypy_cache /
142
+ .dmypy.json
143
+ dmypy.json
144
+
145
+ # Pyre type checker
146
+ .pyre /
147
+
148
+ # pytype static type analyzer
149
+ .pytype /
150
+
151
+ # Cython debug symbols
152
+ cython_debug /
153
+
154
+ # VS Code
155
+ .vscode /
156
+
157
+ # Ignore other unnecessary files
158
+ * .bak
159
+ * .swp
160
+ .DS_Store
161
+ * .pdb
162
+ * .sqlite3
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments