Run AWS Lambda Functions on Docker
In this tutorial we will demonstrate how to run local aws lambda functions with the help of docker and running it locally on a container.
Dockerfile#
In our Dockerfile:
FROM public.ecr.aws/lambda/python:3.8
COPY lambda_function.py ${LAMBDA_TASK_ROOT}...
ruanbekker.hashnode.dev1 min read