Kubernetes in docker

Hi all, what i want to do, is to enable my application to run offline, either from a Windows machine or Linux.

So far, i have several manifests, for different services of my app (database, nginx, servers, api’s etc)

I have a script that will gather all together to a file called offline.yml that i need to run on an offline machine (In case there is no internet access etc)

What is the best approach for this?

I thought of having a Dockerfile, that will install all needed software (docker, minikube, kubernetes etc, copy all files that i will need) and then inside that container, to run my offline.yml file, that will expose the 80 port, so the app is accessible from host machine.

Can someone shed some light :slight_smile:

Thanks,
Nicos