├── Dockerfile ├── README.md ├── app.py └── requirements.txt /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekhargulati/python-flask-docker-hello-world/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekhargulati/python-flask-docker-hello-world/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shekhargulati/python-flask-docker-hello-world/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | --------------------------------------------------------------------------------