This repo contains a sample application to deploy to Kubernetes. The application is a simple HelloWorld app using Python and Flask framework.
$ docker build -f Dockerfile -t hello-python:latest .
$ docker run -it -p 5001:5001 --name hello_python hello-python:latest
# Docker Docs: https://docs.docker.com/
# Docker Reference: https://docs.docker.com/reference/
$ docker-compose up hello_py_devl && docker-compose rm -fsv
# For additional instruction please see notes at the bottom
# of docker-compose.yml file in the app root directory.
# Docker compose docs: https://docs.docker.com/compose/
System Requirements: Git, Python 3.8.0
# Check dependencies
$ git --version
git version 2.23.0
$ python --version
Python 3.8.0
$ pip --version # pip comes as a part of python install
pip 20.0.2 from /usr/local/lib/python3.8/site-packages/pip (python 3.8)
# Clone the sourcecode
$ git clone <repo url>
$ cd <project dir>
# Install project dependencies
$ pip install -r requirements.txt
# Run the application
$ PORT=5001 python src/app.py
# Check application
$ curl http://localhost:5001/debug
# (or)
# In Browser visit -> http://localhost:5001/debug/ui
Pointing your browser to http://localhost:5001/debug/ui will bring up the following: