Brief
This Jenkinsfile defines a simple CI/CD pipeline for a Python application packaged with Docker. It contains two stages:
Build Docker Image – builds the application’s Docker image from the provided Dockerfile.
Run Container – runs the built image as a container, exposing the app on port 5000.
This setup provides a straightforward way to build and deploy the Python app consistently across environments.