Image of node.js for local development of AWS Lambda projects
943
Usage:
To fire up a container with a sample Lambda project:
$ docker run -it --rm incontact/node-lambda bash
To load existing project files from your local host volume (assumes command is run from w/in project directory):
$ docker run -it --rm -v $(pwd):/home/app incontact/node-lambda bash
If node_modules haven't been installed for project yet, first run:
$ npm install
Or if on Windows:
$ npm install --no-bin-links
Then run tests:
$ npm test
Content type
Image
Digest
Size
282.6 MB
Last updated
almost 10 years ago
docker pull incontact/node-lambda