├── .gitignore ├── Dockerfile ├── README.md ├── _container.js ├── bin └── ndl └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | index.js -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/node-docker-lambda/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/node-docker-lambda/HEAD/README.md -------------------------------------------------------------------------------- /_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/node-docker-lambda/HEAD/_container.js -------------------------------------------------------------------------------- /bin/ndl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/node-docker-lambda/HEAD/bin/ndl -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmaiaroto/node-docker-lambda/HEAD/package.json --------------------------------------------------------------------------------