Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

231
Vistas
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" ]
over 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

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.

over 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda