A simple Body Mass Index (BMI) calculator built with HTML, CSS, and JavaScript — containerized using Docker.
docker build -t bmi-calculator .
docker run -d -p 8080:80 bmi-calculatorThen open your browser at http://localhost:8080.
index.html
style.css
script.js
Dockerfile
README.md
- Calculates BMI based on weight and height.
- Displays result and category (Underweight, Normal, Overweight, Obese).
- Responsive design and clean UI.