Skip to content

Commit 7a7e4c0

Browse files
committed
Add dockerignore file
Signed-off-by: Keshav Priyadarshi <git@keshav.space>
1 parent 35a4ab5 commit 7a7e4c0

1 file changed

Lines changed: 120 additions & 0 deletions

File tree

.dockerignore

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
eggs/
15+
.eggs/
16+
lib/
17+
lib64/
18+
parts/
19+
sdist/
20+
var/
21+
wheels/
22+
*.egg-info/
23+
.installed.cfg
24+
*.egg
25+
26+
27+
# Installer logs
28+
pip-log.txt
29+
pip-delete-this-directory.txt
30+
pip-selfcheck.json
31+
32+
# Unit test / coverage reports
33+
htmlcov/
34+
.tox/
35+
.coverage
36+
.coverage.*
37+
.cache
38+
coverage.xml
39+
*.cover
40+
41+
# Translations
42+
*.mo
43+
*.pot
44+
45+
# Django stuff:
46+
*.log
47+
local_settings.py
48+
49+
# Sphinx
50+
docs/_build
51+
docs/bin
52+
docs/build
53+
docs/include
54+
docs/Lib
55+
doc/pyvenv.cfg
56+
pyvenv.cfg
57+
58+
# PyBuilder
59+
target/
60+
61+
# Jupyter Notebook
62+
.ipynb_checkpoints
63+
64+
# pyenv and pip
65+
.python-version
66+
pyvenv.cfg
67+
bin/
68+
69+
# Environments
70+
.venv
71+
env/
72+
venv/
73+
ENV/
74+
75+
76+
# mypy
77+
.mypy_cache/
78+
79+
80+
# Database
81+
*.sqlite3*
82+
83+
# Staticfiles
84+
staticfiles/
85+
86+
# virtualenv
87+
bin
88+
include
89+
lib64
90+
share
91+
Pipfile
92+
93+
# editors
94+
.vscode
95+
# PyCharm
96+
.idea/
97+
98+
# pytest
99+
.pytest_cache
100+
101+
102+
# Various junk and temp files
103+
.DS_Store
104+
*~
105+
.*.sw[po]
106+
.build
107+
.ve
108+
*.bak
109+
/.cache/
110+
/tmp/
111+
112+
# pyenv
113+
/.python-version
114+
/man/
115+
/.pytest_cache/
116+
lib64
117+
tcl
118+
119+
# Ignore Jupyter Notebook related temp files
120+
.ipynb_checkpoints/

0 commit comments

Comments
 (0)