Skip to content

Commit a158a8e

Browse files
authored
Added: .dockerignore file
1 parent 453a740 commit a158a8e

File tree

1 file changed

+107
-0
lines changed

1 file changed

+107
-0
lines changed

.dockerignore

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
bin/
2+
src/static/
3+
src/staticfiles/css/
4+
src/staticfiles/js/
5+
src/staticfiles/**/*.svg
6+
src/staticfiles/**/*.png
7+
src/staticfiles/**/*.jpg
8+
src/staticfiles/**/*.jpeg
9+
src/staticfiles/**/*.gif
10+
src/staticfiles/**/*.webp
11+
src/staticfiles/**/*.ico
12+
/static-cdn-local/
13+
logs
14+
*.log
15+
npm-debug.log*
16+
yarn-debug.log*
17+
yarn-error.log*
18+
pnpm-debug.log*
19+
lerna-debug.log*
20+
node_modules
21+
dist
22+
dist-ssr
23+
*.local
24+
.idea
25+
.DS_Store
26+
*.suo
27+
*.ntvs*
28+
*.njsproj
29+
*.sln
30+
*.sw?
31+
__pycache__/
32+
*.py[cod]
33+
*$py.class
34+
*.so
35+
.Python
36+
build/
37+
develop-eggs/
38+
dist/
39+
downloads/
40+
eggs/
41+
.eggs/
42+
lib/
43+
lib64/
44+
parts/
45+
sdist/
46+
var/
47+
wheels/
48+
share/python-wheels/
49+
*.egg-info/
50+
.installed.cfg
51+
*.egg
52+
MANIFEST
53+
*.manifest
54+
*.spec
55+
pip-log.txt
56+
pip-delete-this-directory.txt
57+
htmlcov/
58+
.tox/
59+
.nox/
60+
.coverage
61+
.coverage.*
62+
.cache
63+
nosetests.xml
64+
coverage.xml
65+
*.cover
66+
*.py,cover
67+
.hypothesis/
68+
.pytest_cache/
69+
cover/
70+
*.mo
71+
*.pot
72+
*.log
73+
local_settings.py
74+
db.sqlite3
75+
db.sqlite3-journal
76+
instance/
77+
.webassets-cache
78+
.scrapy
79+
docs/_build/
80+
.pybuilder/
81+
target/
82+
.ipynb_checkpoints
83+
profile_default/
84+
ipython_config.py
85+
Pipfile.lock
86+
.pdm.toml
87+
__pypackages__/
88+
celerybeat-schedule
89+
celerybeat.pid
90+
*.sage.py
91+
.env
92+
.venv
93+
env/
94+
venv/
95+
ENV/
96+
env.bak/
97+
venv.bak/
98+
.spyderproject
99+
.spyproject
100+
.ropeproject
101+
/site
102+
.mypy_cache/
103+
.dmypy.json
104+
dmypy.json
105+
.pyre/
106+
.pytype/
107+
cython_debug/

0 commit comments

Comments
 (0)