This guide provides step-by-step instructions to set up and run a Flask application using Docker.
- Install Docker on your system.
- Ensure
dockeris running.
- Clone the Repository
git clone <repository-url>
cd <project-folder>- Build the Docker Image
docker build -t flask-app .- Run the Flask Application in Docker
docker run -d -p 5000:5000 flask-appThank for reading!!