BTW, from what I’ve heard, AWS Lambda could work if you
Download and install Julia when the lambda function is first invoked. This is done to work around the 250 MB limit.
Keep it warm by calling the lambda function regularly. This is done to avoid the first hit performance issue, which is not specific to Julia but rather an artifact of the current lambda service.
Another option is to deploy Julia and your app as a Docker image and deploy it on AWS Fargate. I haven’t tried but I can imagine that it should work.