SIENTIAPDE-1308: Initial Docker setup, improved .dockerignore, updated README, and minor fixes.

This commit is contained in:
Bruno Domingues
2025-11-04 14:07:37 -03:00
parent 9f56a128e6
commit d9d3df5723
5 changed files with 321 additions and 2 deletions

View File

@@ -168,3 +168,14 @@ directory = "htmlcov"
[tool.bandit]
exclude_dirs = ["tests", "venv", ".venv"]
skips = ["B101", "B601"] # Skip assert and shell injection in controlled environments
[tool.deptry]
known_first_party = [
"model_manager"
]
requirements_files = [
"requirements.txt"
]
requirements_files_dev = [
"requirements-dev.txt"
]