Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use amazon/aws-lambda-nodejs:16 Docker image #481

Closed
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Provide ENTRYPOINT option to docker run
  • Loading branch information
techeverri committed Oct 29, 2023
commit 98b86e46aa6a8d8d2a4caff666017fa6986aa4f9
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const executeLambda = (event) =>
dockerArgs: ['-m', '1024M'].concat(DEBUG ? ['-e', 'DEBUG=*'] : []),
dockerImage: 'amazon/aws-lambda-nodejs:16',
taskDir: PROJECT_ROOT,
handler: 'examples/renderer-aws-lambda/index.handler',
handler: '--entrypoint ["examples/renderer-aws-lambda/index.handler"]',
returnSpawnResult: DEBUG,
});

Expand Down