This repository contains a simple example of running a Flask application inside a Docker container. Use this repo as your notebook for Docker experiments and learning.
app.py: Minimal Flask web application.Dockerfile: Instructions to build the Docker image.requirements.txt: Python dependencies.README.md: This notebook and reference guide.
docker build -t flask-docker-tutorial .docker run -p 5000:5000 flask-docker-tutorialVisit http://localhost:5000 in your browser. You should see:
Hello, World!
- Notes: Google Drive Notes
- NotebookLM: NotebookLM LLM Notebook
- Docker Hub Repository: anujjainbatu/hello-world