A simple Python Flask web application containerized with Docker.
- Python
- Flask
- Docker
dev.py- main Flask applicationrequirements.txt- project dependenciesDockerfile- Docker image configurationdocker-compose.yml- service configuration using Docker Compose.dockerignore- excludes unnecessary files from the Docker build
docker build -t mydevapp .
docker run -p 5000:5000 mydevapp
Then open:
http://localhost:5000
Purpose
This project was built to practice containerizing a Python application using Docker.