How to run AWS Lambda function works with container images?

Please explain how does container images works with the AWS Lambda Functions.

1 Answers

  • #329
    Up
    0
    Down

    Please explain how does container images works with the AWS Lambda Functions.

    #330
    Up
    1
    Down

    You can get started with deploying containers to AWS Lambda in three steps:

    1) Prepare a container definition that implements the Lambda Runtime Interface as
    explained below.
    2) Build the container image and publish it to Amazon Elastic Container Registry (ECR).

    3) Deploy an AWS Lambda, grant it access to the ECR, and point it to the container image.

    Your container image has to implement AWS Lambda runtime API. Runtime API is a simple HTTP-based protocol with operations to retrieve invocation data, submit responses, and report errors.

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.