I would like to know what is the best way to protect python source code of Flask app from been copied after it is deployed to the cloud provider.
My understanding of the process is as follows:
- once app is in the cloud, support staff for cloud infrastructure could access and copy the source code of the app.
Questions:
- Is my understanding correct?
- if Yes an answer to the first question,is anything could be done to limit access to source code by support staff?
The question is also relevant when deploying "proprietary" algorithms to the cloud. How is that get addressed?
Thank you for any insights!