This is a bit of a beginner’s question. I’m attempting to get a simple Hello World Python flask application deployed in a kubernetes cluster on IBM Cloud. The application (main.py): I build my Docker image with docker build –rm -t kube-hw . and Dockerfile: I run it locally with docker run –rm -p 5000:5000 kube-hw. That works fine. I can