Currently using DockerImageFunction, but I can’t figure out how to set the CMD Override. Any advice would be appreciated.
Repo: https://github.com/alphaHades/Dockerized-Lambda-NR/blob/main/lib/docker-lambda-aws-stack.ts
// docker image function const dockerFunc = new lambda.DockerImageFunction(this, "DockerFunc", {
code: lambda.DockerImageCode.fromImageAsset( "./image", {
cmd: ['newrelic_lambda_wrapper.handler'] // assign cmd override for image config } ),
});