amazon web services - Full example of Lambda Docker container? - Stack Overflow
Lambda Python Dockerfile Yum
basic config to run a python docker image via AWS Lambda function - Stack Overflow
Deploy a Lambda as a ZIP or Docker image?
Videos
Hi, I've been creating some code and uploading it using a Dockerfile image into AWS ECR. Then I load the image onto AWS Lambda where I run the code.
My docker file starts like this:
Start with the base image
FROM public.ecr.aws/lambda/python:3.11 as build
Install system-level dependencies for Chrome and FFmpeg
RUN yum install -y unzip atk cups-libs gtk3 libXcomposite alsa-lib \
I've been using this docker file with docker build and uploading it for weeks now without any issue. Today when I did docker build I got this error:
=> ERROR [ 2/16] RUN yum install -y unzip atk cups-libs gtk3 libXcomposite alsa-lib ERROR: failed to solve: process "/bin/sh -c yum install -y unzip atk cups-libs gtk3 libXcomposite alsa-lib
Which I thought could be the base image, that did not have yum installed. But it is the same 3.11 as previous days.
Any idea or solutions to this? Do you guys know if the base image python:3.11 has changed in any way recently?