Amazon web services – Install Linux package in Node.js image for AWS Lambda
I am trying to build a container image for a Node.js Lambda function. My base image is like this: FROM public.ecr.aws/lambda/nodejs:20 COPY index.js ${LAMBDA_TASK_ROOT} CMD [ "index.handler" ] However, my Node.js function also uses pdf2htmlEX package. One way to install…