I am trying to publish a similar dockerized lambda container with an embedded extension similar to what you have created here.
Except instead of a python lambda extension I wanted to use golang and I am trying to attach this to a dockerzied nodejs lambda function.
But when I try and combine the two I am getting this error 👇
I have a sample repository here where you can see and deploy exactly what I have created to recreate this issue.
I am somewhat confused because the extension seems to work fine deployed on its own as a layer and if I modify the docker file for the nodejs lambda container to publish the extension code to a directory other than /opt/extensions then I am able to find the extension code when I search for it within my containerized nodejs app 🤔
I am trying to publish a similar dockerized lambda container with an embedded extension similar to what you have created here.
Except instead of a python lambda extension I wanted to use golang and I am trying to attach this to a dockerzied nodejs lambda function.
But when I try and combine the two I am getting this error 👇
I have a sample repository here where you can see and deploy exactly what I have created to recreate this issue.
I am somewhat confused because the extension seems to work fine deployed on its own as a layer and if I modify the docker file for the nodejs lambda container to publish the extension code to a directory other than
/opt/extensions
then I am able to find the extension code when I search for it within my containerized nodejs app 🤔