fpgmaas / aws-cdk-py-docker-lambdas

A repository that contains code to deploy multiple lambdas with one single Docker image using AWS CDK

Home Page:https://www.fpgmaas.com/blog/aws-cdk-lambdas-docker

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

aws-cdk-py-docker-lambdas

This is a project that contains source code required to deploy multiple Lambdas using a single Docker image to AWS using the AWS CDK.

Exact steps to recreate and deploy the project can be found in this blogpost

.
├── README.md
├── cdk
│   ├── README.md
│   ├── bin
│   │   └── cdk-lambda-python.ts
│   ├── lib
│   │   └── cdk-lambda-python-stack.ts
│   ├── cdk.json
│   ├── jest.config.json
│   ├── package-lock.json
│   ├── package.json
│   └── tsconfig.json
└── python
    ├── Dockerfile
    ├── README.md
    ├── poetry.lock
    ├── pyproject.toml
    └── src
        ├── __init__.py
        ├── lambda_1
        │   ├── __init__.py
        │   └── index.py
        └── lambda_2
            ├── __init__.py
            └── index.py

About

A repository that contains code to deploy multiple lambdas with one single Docker image using AWS CDK

https://www.fpgmaas.com/blog/aws-cdk-lambdas-docker


Languages

Language:TypeScript 37.1%Language:Dockerfile 23.8%Language:Python 22.8%Language:JavaScript 16.3%