Skip to content

Commit

Permalink
Provide ENTRYPOINT option to docker run
Browse files Browse the repository at this point in the history
  • Loading branch information
techeverri committed Oct 29, 2023
1 parent f156f3f commit 98b86e4
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 98b86e4

Please sign in to comment.