Dhiraj
Dhiraj

Reputation: 632

Can we deploy asp.net web application as AWS lambda function ( as container image )

Recently AWS announced container support on lambda. i.e. Lambda function as a container image, where we can deploy a limited-sized containerized application to AWS lambda.

So I created containerized asp.net core razor pages web application and deployed that docker image to AWS lambda but I couldn't get it working.

My question is, can we even do that?

I know we can deploy console apps or web APIs according to this - AWS Post but I did not find anything on the internet about deploying a Website/Web application.

Upvotes: 1

Views: 700

Answers (1)

Pankaj Rawat
Pankaj Rawat

Reputation: 4573

Yes, you can deploy asp.net core web app in Lambda function. Check below blog post

Serverless ASP.NET Core 2.0 Applications

I tried for a sample application from Visual Studio 2017 and it is working good.

Upvotes: 1

Related Questions