Nathaniel Russell
09/26/2022, 8:12 PMChristopher Boyd
09/27/2022, 3:27 PMNathaniel Russell
09/27/2022, 4:49 PMCMD [ "service.handler" ]
The above line tells lambda what handler function to run, however a non-lambda docker image will not understand this. My problem could be solved 2 ways. Get a non lambda docker image to properly register the handler function, or get sqlite 3.24.0+ installed on the lambda docker image.
FROM public.ecr.aws/lambda/python:3.9
^ That is the lambda image
FROM prefecthq/prefect:2.4.2-python3.9
^ That is the prefect image that has the proper sqlite but doesn't work with lambdaChristopher Boyd
09/27/2022, 4:55 PM