Skip to content

Commit 85da340

Browse files
committed
ci: add .dockerignore
Signed-off-by: thxCode <thxcode0824@gmail.com>
1 parent 1fc024d commit 85da340

File tree

1 file changed

+59
-0
lines changed

1 file changed

+59
-0
lines changed

.dockerignore

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# IDE or OS
2+
.idea/
3+
.vscode/
4+
.DS_Store
5+
*.swp
6+
7+
# C extensions
8+
*.so
9+
10+
# Python-generated files
11+
_version.py
12+
_version_appendix.py
13+
__pycache__/
14+
__pypackages__/
15+
.pytest_cache/
16+
.ruff_cache/
17+
*.py[oc]
18+
*$py.class
19+
build/
20+
downloads/
21+
dist/
22+
eggs/
23+
.eggs/
24+
parts/
25+
sdist/
26+
wheels/
27+
pip-wheel-metadata/
28+
share/python-wheels/
29+
*.egg-info/
30+
.installed.cfg
31+
*.egg
32+
MANIFEST
33+
site
34+
35+
# Virtual environments
36+
env/
37+
venv/
38+
.env/
39+
.venv/
40+
ENV/
41+
VENV/
42+
env.bak/
43+
venv.bak/
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+
.coverage
53+
.coverage.*
54+
.cache
55+
nosetests.xml
56+
coverage.xml
57+
*.cover
58+
*.py,cover
59+
.hypothesis/

0 commit comments

Comments
 (0)