{"id":22615654,"url":"https://github.com/marcellodesales/aws-lambda-ric-rie-base-docker","last_synced_at":"2026-02-08T23:04:32.050Z","repository":{"id":142072436,"uuid":"540721487","full_name":"marcellodesales/aws-lambda-ric-rie-base-docker","owner":"marcellodesales","description":"Generic versions of the AWS Lambda Runtime Interface Clients in different languages ","archived":false,"fork":false,"pushed_at":"2022-10-04T16:32:54.000Z","size":13,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-29T00:42:38.672Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/marcellodesales.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-09-24T05:39:31.000Z","updated_at":"2024-08-24T23:43:41.000Z","dependencies_parsed_at":"2023-07-09T05:31:19.158Z","dependency_job_id":null,"html_url":"https://github.com/marcellodesales/aws-lambda-ric-rie-base-docker","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/marcellodesales/aws-lambda-ric-rie-base-docker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcellodesales%2Faws-lambda-ric-rie-base-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcellodesales%2Faws-lambda-ric-rie-base-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcellodesales%2Faws-lambda-ric-rie-base-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcellodesales%2Faws-lambda-ric-rie-base-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/marcellodesales","download_url":"https://codeload.github.com/marcellodesales/aws-lambda-ric-rie-base-docker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marcellodesales%2Faws-lambda-ric-rie-base-docker/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268408187,"owners_count":24245576,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-02T02:00:12.353Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-08T19:08:42.764Z","updated_at":"2026-02-08T23:04:26.997Z","avatar_url":"https://github.com/marcellodesales.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ☁️ AWS Lambda RIC \u0026 RIE base docker images 🐳\n\nThe images to run a Serverless in AWS and locally with an Emulator.\n\n# 🎌 Languages\n\n\u003e **NOTE**: Different languages require different handlers.\n\n* [x] [python](./python)\n* [ ] nodejs\n* [ ] golang\n* [ ] java\n\n# 🔧 Generic Config\n\n* Create a new `docker-compose.yaml`\n  * It points to this repo at a given version `v0.1.0`\n* Choose a version of the language by choosing the path to the `dockerfile`\n  * Default values will be used from the Dockerfile image used.\n\n```yaml\nversion: \"3.8\"\n\nx-aws-lambda-build-params: \u0026aws-lambda-build-params\n  # Loading the context from a public git repo as this is Open-source\n  context: https://github.com/marcellodesales/aws-lambda-ric-rie-base-docker.git#${RICRIE_DOCKERFILE_VERSION}\n  dockerfile: python/Dockerfile\n  args:\n    BASE_IMAGE_BUILD: ${BASE_IMAGE_BUILD}\n\nservices:\n\n  # Base Runtime Container\n  # Base implementation of https://docs.aws.amazon.com/lambda/latest/dg/runtimes-api.html for python code\n  aws-lambda-ric-runtime-python:\n    image: ${AWS_RIC_IMAGE}\n    build: \n      \u003c\u003c: [ *aws-lambda-build-params ]\n      target: custom-aws-lambda-ric-runtime-base-python\n      cache_from:\n        - ${AWS_RIC_IMAGE}\n\n  # Base Runtime Interface Emulator\n  # https://docs.aws.amazon.com/lambda/latest/dg/images-test.html#images-test-limitations\n  aws-lambda-rie-runtime-emulator-python:\n    image: ${AWS_RIE_IMAGE}\n    build:\n      \u003c\u003c: [ *aws-lambda-build-params ]\n      target: custom-aws-lambda-rie-runtime-base-python\n      cache_from:\n        - ${AWS_RIE_IMAGE}\n```\n\n* Provide the variables above in a `.env` file\n\n```properties\n# A release version of this repo\nRICRIE_DOCKERFILE_VERSION=v0.1.0\n\n# The base image that can build the RIC images\nBASE_IMAGE_BUILD=artifactory.company.com/build/python:3.9-alpine\n\n# Tag for the built implementation of https://docs.aws.amazon.com/lambda/latest/dg/runtimes-api.html for python code\nAWS_RIC_IMAGE=artifactory.company.com/runtime/aws-lambda-ric:python-3.9\n\n# The for the built implementation of https://docs.aws.amazon.com/lambda/latest/dg/images-test.html#images-test-limitations\nAWS_RIE_IMAGE=artifactory.company.com/runtime/aws-lambda-rie-emulator:python-3.9\n```\n\n# 🏗️ Build\n\n* Profit by executing the build\n  * Notice that it does a git pull from the given version\n\n```console\n$ docker compose build\n[+] Building 15.7s (12/12) FINISHED                                                                                                                                                                                                                                                                                                                                            \n =\u003e CACHED [artifactory.company.com/runtime/aws-lambda-rie-emulator:python-3.9 internal] load git source https://github.com/marcellodesales/aws-lambda-ric-rie-base-docker.git#v0.1.0\n...\n...  \n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarcellodesales%2Faws-lambda-ric-rie-base-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarcellodesales%2Faws-lambda-ric-rie-base-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarcellodesales%2Faws-lambda-ric-rie-base-docker/lists"}