A basic Flask application Docker image based on Python 3.11, for learning and deploying Flask apps.
751
Project: Python Flask Application
This repository contains a simple Python Flask application designed for demonstration purposes. It includes configurations to run the application in a Docker container.
Key Features:
Clone the Repository: git clone https://github.com/kvngjohn/python-hello-world.git
Set Up a Virtual Environment: python -m venv venv
Install Dependencies: pip install -r requirements.txt
Run the Flask Application: python app.py
Build a Docker Image: docker build -t kvngjohn/python-hello-world:latest .
Run a container: docker run -p 5000:5000 kvngjohn/python-hello-world:latest
Content type
Image
Digest
sha256:3225cd52b…
Size
61.7 MB
Last updated
about 2 years ago
docker pull kvngjohn/python-hello-world