Spaces:
Running
Running
Create .dockerignore
Browse files- .dockerignore +100 -0
.dockerignore
ADDED
@@ -0,0 +1,100 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Python-specific ignores
|
2 |
+
*.pyc
|
3 |
+
*.pyo
|
4 |
+
__pycache__/
|
5 |
+
*.egg-info/
|
6 |
+
.pytest_cache/
|
7 |
+
.mypy_cache/
|
8 |
+
.venv/
|
9 |
+
venv/
|
10 |
+
venv.bak/
|
11 |
+
|
12 |
+
# C extensions
|
13 |
+
*.so
|
14 |
+
|
15 |
+
# Byte-compiled / optimized / DLL files
|
16 |
+
**/__pycache__/
|
17 |
+
**/*.py[cod]
|
18 |
+
|
19 |
+
# Docker
|
20 |
+
docker-compose.yml
|
21 |
+
Dockerfile
|
22 |
+
.docker
|
23 |
+
.dockerignore
|
24 |
+
|
25 |
+
# Node.js
|
26 |
+
node_modules
|
27 |
+
npm-debug.log
|
28 |
+
yarn-error.log
|
29 |
+
|
30 |
+
# Rust (opsional)
|
31 |
+
target/
|
32 |
+
Cargo.lock
|
33 |
+
|
34 |
+
# System
|
35 |
+
.DS_Store
|
36 |
+
*.swp
|
37 |
+
|
38 |
+
# Git & editor
|
39 |
+
.git/
|
40 |
+
.vscode/
|
41 |
+
.idea/
|
42 |
+
.gitignore
|
43 |
+
.gitattributes
|
44 |
+
|
45 |
+
# Env & secrets
|
46 |
+
.env
|
47 |
+
.env.*
|
48 |
+
env/
|
49 |
+
ENV/
|
50 |
+
env.bak/
|
51 |
+
|
52 |
+
# Logs
|
53 |
+
*.log
|
54 |
+
.cache
|
55 |
+
|
56 |
+
# Distribution / packaging
|
57 |
+
.Python
|
58 |
+
env/
|
59 |
+
build/
|
60 |
+
develop-eggs/
|
61 |
+
dist/
|
62 |
+
downloads/
|
63 |
+
eggs/
|
64 |
+
lib/
|
65 |
+
lib64/
|
66 |
+
parts/
|
67 |
+
sdist/
|
68 |
+
var/
|
69 |
+
*.egg-info/
|
70 |
+
.installed.cfg
|
71 |
+
*.egg
|
72 |
+
|
73 |
+
# PyInstaller
|
74 |
+
# Usually these files are written by a python script from a template
|
75 |
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
76 |
+
*.manifest
|
77 |
+
*.spec
|
78 |
+
|
79 |
+
# Installer logs
|
80 |
+
pip-log.txt
|
81 |
+
pip-delete-this-directory.txt
|
82 |
+
|
83 |
+
# Unit test / coverage reports
|
84 |
+
htmlcov/
|
85 |
+
.tox/
|
86 |
+
.coverage
|
87 |
+
.cache
|
88 |
+
nosetests.xml
|
89 |
+
coverage.xml
|
90 |
+
|
91 |
+
# Translations
|
92 |
+
*.mo
|
93 |
+
*.pot
|
94 |
+
|
95 |
+
# PyCharm
|
96 |
+
.idea
|
97 |
+
|
98 |
+
# Python mode for VIM
|
99 |
+
.ropeproject
|
100 |
+
**/.ropeproject
|