Detects which framework is in use for a project and suggests a dockerfile.
Strongly influenced by https://github.com/netlify/framework-info
pip install framework-detector
from framework_detector import detect, get_dockerfile
from pathlib import Path
framework = detect(Path.cwd())
dockerfile = get_dockerfile(framework["dockerfile"])
- Flask
- Spring Boot
- Django
- More to come...