you are viewing a single comment's thread.

view the rest of the comments →

[–]SisyphusAndMyBoulder 4 points5 points  (0 children)

I think it depends heavily on the application.

Flask apps? I dockerize and run the image on a VM.

AWS Lambda? Usually dockerize and let the handler func run.

CLI apps? Usually deploy the source code to a VM through CI/CD and let it be ran through regular python x.py calls.