Creating an AWS Lambda Python Docker Image from Scratch

Utkarsha Bakshi
Geek Culture
Published in
3 min readJan 5, 2023

--

Source (link)

In my previous tutorial, we learned how to use public.ecr.aws/lambda/python:3.8 as a base image for Dockerizing Python Lambda functions. This particular image uses Amazon Linux 2 operating system. There might be use cases where you might want to use a different base image with some other operating system for your Docker image.

--

--