fix:增加.dockerignore文件
Showing
1 changed file
with
25 additions
and
44 deletions
| 1 | # Python cache | 1 | # Python |
| 2 | __pycache__/ | ||
| 3 | *.py[cod] | ||
| 4 | *$py.class | ||
| 5 | *.so | ||
| 6 | .Python | ||
| 7 | |||
| 8 | # Virtual environments | ||
| 9 | .venv/ | 2 | .venv/ |
| 10 | venv/ | 3 | venv/ |
| 11 | ENV/ | 4 | __pycache__/ |
| 12 | env/ | 5 | *.pyc |
| 6 | *.pyo | ||
| 7 | *.pyd | ||
| 8 | .Python | ||
| 9 | pip-log.txt | ||
| 10 | pip-delete-this-directory.txt | ||
| 11 | .tox/ | ||
| 12 | .coverage | ||
| 13 | .coverage.* | ||
| 14 | htmlcov/ | ||
| 15 | .pytest_cache/ | ||
| 16 | .mypy_cache/ | ||
| 13 | 17 | ||
| 14 | # IDE | 18 | # IDE |
| 15 | .vscode/ | ||
| 16 | .idea/ | 19 | .idea/ |
| 20 | .vscode/ | ||
| 17 | *.swp | 21 | *.swp |
| 18 | *.swo | 22 | *.swo |
| 19 | *~ | ||
| 20 | 23 | ||
| 21 | # OS | 24 | # Data (运行时挂载,不需要打包) |
| 22 | .DS_Store | 25 | data/ |
| 23 | Thumbs.db | 26 | logs/ |
| 27 | uploads/ | ||
| 24 | 28 | ||
| 25 | # Git | 29 | # Git |
| 26 | .git/ | 30 | .git/ |
| 27 | .gitignore | 31 | .gitignore |
| 28 | 32 | ||
| 29 | # Logs | 33 | # Debug scripts |
| 30 | *.log | 34 | debug_*.py |
| 31 | logs/ | ||
| 32 | data/logs/ | ||
| 33 | |||
| 34 | # Data directories (use volumes instead) | ||
| 35 | data/uploads/ | ||
| 36 | data/design_images/ | ||
| 37 | data/faiss/*.bin | ||
| 38 | data/faiss/*.pkl | ||
| 39 | |||
| 40 | # Documentation | ||
| 41 | *.md | ||
| 42 | docs/ | ||
| 43 | |||
| 44 | # Docker | ||
| 45 | Dockerfile | ||
| 46 | docker-compose.yml | ||
| 47 | .dockerignore | ||
| 48 | |||
| 49 | # Test files | ||
| 50 | test_*.py | 35 | test_*.py |
| 51 | *_test.py | ||
| 52 | |||
| 53 | # Environment | ||
| 54 | .env | ||
| 55 | .env.* | ||
| 56 | 36 | ||
| 57 | # Temporary files | 37 | # Misc |
| 58 | tmp/ | 38 | *.log |
| 59 | temp/ | ||
| 60 | *.tmp | 39 | *.tmp |
| 40 | .DS_Store | ||
| 41 | Thumbs.db | ... | ... |
-
Please register or sign in to post a comment