├── Dockerfile ├── README.md └── backend ├── app.py ├── requirements.txt └── templates └── index.html /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-multistage-docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-multistage-docker/HEAD/README.md -------------------------------------------------------------------------------- /backend/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-multistage-docker/HEAD/backend/app.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-multistage-docker/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/python-multistage-docker/HEAD/backend/templates/index.html --------------------------------------------------------------------------------