Deploying python flask app on aws lambda container

0

I want to deploy python flask app on aws lambda using lambda container. I tried using sam. It didn't work. It was expecting a lambda handler function. Is there a way of writing lambda handler to translate it to flask format?

2 回答
1

Give https://github.com/zappa/Zappa a go, or google "flask lambda" for other options. We had good results with zappa & django with a fairly large app where zappa was used to package it, then it was deployed as a container lambda. It supports zip lambda deployment directly but we found the container option worked better for a larger app.

专家
已回答 2 年前
  • Thank you. My code is exceeding the size. I need container support.

1

You can try Lambda Adapter (https://github.com/awslabs/aws-lambda-web-adapter). The idea is to wrap your web app with a layer that will convert Lambda events into emualated http requests, so you can use any web framework.

AWS
已回答 2 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则