From b534ade943e3226bc393d9fddf4621ed14220a0f Mon Sep 17 00:00:00 2001 From: karthikeyan24-kk Date: Sat, 8 Nov 2025 19:09:18 +0530 Subject: [PATCH] Update README.md --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/README.md b/README.md index 0349143d..18c54212 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,33 @@ This project has adopted the [Microsoft Open Source Code of Conduct](https://ope For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. +🐳 Running This Project with Docker +📋 Prerequisites + +Before you start, make sure you have: + +Docker + +(Optional) Git + +🚀 Steps to Run the App +1. Clone this repository + +git clone https://github.com/your-username/your-repo-name.git +cd your-repo-name + +2. Build the Docker image +docker build -t my-python-app . + +3. Run the container +docker run -p 9000:9000 my-python-app + +4. Stop the container + docker ps # List running containers +docker stop + ## License Copyright © Microsoft Corporation All rights reserved.
Licensed under the MIT License. See LICENSE in the project root for license information. +