Git Product home page Git Product logo

p-i- / lambda-container-image-with-custom-runtime-example Goto Github PK

View Code? Open in Web Editor NEW

This project forked from aripalo/lambda-container-image-with-custom-runtime-example

0.0 1.0 0.0 14 KB

This is a brief example how to define a Lambda function with bash using Amazon Linux 2 based Custom Runtime and Container Image Support

Home Page: https://aripalo.com/blog/2020/aws-lambda-container-image-support/

Dockerfile 1.33% Shell 52.84% Rich Text Format 45.84%

lambda-container-image-with-custom-runtime-example's Introduction

Lambda Container Image Support (with Custom Runtime)

This is a brief example how to define a Lambda function with bash using Amazon Linux 2 based Custom Runtime and Container Image Support (relesed in re:Invent 2020).

See the blog post for more information: aripalo.com/blog/2020/aws-lambda-container-image-support/

pipeline.sh (created by [email protected] 9 Jan 2021)

I have implemented the instructions in bash. This makes it much easier to see the process flow. Also it may serve as a decent foundation for a more advanced pipeline (it implements a rudimentary local/staging/production)

Setup

Modify the ENV-vars in pipeline.sh

Build Image (and test against local)

pipeline.sh build staging
  • Builds build local docker image.
  • Tests the container image by spinning up an instance, sending a CURL request, then destroying the instance.

You can CTRL+c at the prompt and docker exec -it ${container_id} /bin/sh to get into the box if you like.

Deploy to AWS (and test against remote)

pipeline.sh deploy staging
  • Creates a repo if it doesn't exist
  • Logs into AWS ECR Docker repository
  • Tags Docker Image (specific format, so AWS Lambda can find it)
  • Pushes image to remote
  • Tests
    • If there is a running lambda function with this name, delete it.
    • Create lambda function
    • test against endpoint, printing response

Usage (Original document)

(Very briefly, again see the blog post for more.)

Local testing

cd src

docker build -t lambda-container-demo .
docker run -p 9000:8080 lambda-container-demo:latest

In another terminal call:

curl -XPOST \
"http://localhost:9000/2015-03-31/functions/function/invocations" \
-d 'Hello from Container Lambda!'

Deployment

cd src

# Build the image
docker build -t lambda-container-demo .

# Create repository
aws ecr create-repository --repository-name lambda-container-demo --image-scanning-configuration scanOnPush=true

# Tag it
docker tag lambda-container-demo:latest 123412341234.dkr.ecr.eu-west-1.amazonaws.com/lambda-container-demo:latest

# Login
aws --region eu-west-1 ecr get-login-password | docker login --username AWS --password-stdin 123412341234.dkr.ecr.eu-west-1.amazonaws.com

# Push the image
docker push 123412341234.dkr.ecr.eu-west-1.amazonaws.com/lambda-container-demo:latest

Then either manually create the Lambda function or use the fresh from the oven CDK deployment.

lambda-container-image-with-custom-runtime-example's People

Contributors

aripalo avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.