• Jobs
  • About Us
  • professionals
    • Home
    • Jobs
    • Courses and challenges
  • business
    • Home
    • Post vacancy
    • Our process
    • Pricing
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Salary Calculator

0

201
Views
Expose a handler function to Lambda from a Docker Image

I'm trying to build a hello world example of a docker image powering a lambda function.

My docker image houses a NPM project that looks like this:

project
│   app.js
|   Dockerfile
|   package.json
|   package-lock.json

The code inside app.js is:

// app.js
module.exports.lambdaHandler = async (event, context) => {
  console.log('Code Running Inside Handler Function');
  console.log(event);
  console.log(context);
  return "Hello World.";
}

I dockerize my app with this CMD layer in my docker file:

CMD [ "app.lambdaHandler" ]

I upload the docker image to AWS and try to run it as a lambda function. However I get the follow runtime error:

Cannot find module '/project/app.lambdaHandler'

How am I supposed to expose 'lambdaHandler' to aws?

Edit to include my docker file:

FROM node:16

COPY app.js ./

CMD [ "app.lambdaHandler" ]
about 3 years ago · Santiago Trujillo
1 answers
Answer question

0

When using custom image for AWS lambda container, some steps have to be undertaken to prepare it for a lambda environment. They include, among other things:

  • Installing the runtime interface client.
  • Setting the ENTRYPOINT property to invoke the runtime interface client.

But the easiest way would be to use AWS provided base images.

about 3 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Our process Sales
Legal
Terms and conditions Privacy policy
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Recommend me some offers
I have an error