├── Dockerfile ├── README.md ├── app.py ├── config.py ├── random_forest_regression_model.pkl ├── requirements.txt ├── static └── css │ └── style.css └── templates ├── home.html └── result.html /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Kubernet-Dockers/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Kubernet-Dockers -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Kubernet-Dockers/HEAD/app.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Kubernet-Dockers/HEAD/config.py -------------------------------------------------------------------------------- /random_forest_regression_model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Kubernet-Dockers/HEAD/random_forest_regression_model.pkl -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Kubernet-Dockers/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Kubernet-Dockers/HEAD/static/css/style.css -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Kubernet-Dockers/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/Kubernet-Dockers/HEAD/templates/result.html --------------------------------------------------------------------------------