├── .github └── workflows │ └── greetings.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── img └── usage.png ├── publish.sh ├── test.sh └── test ├── image1.jpg ├── index.js └── main.py /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpidanny/gm-lambda-layer/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | layer -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpidanny/gm-lambda-layer/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpidanny/gm-lambda-layer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpidanny/gm-lambda-layer/HEAD/README.md -------------------------------------------------------------------------------- /img/usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpidanny/gm-lambda-layer/HEAD/img/usage.png -------------------------------------------------------------------------------- /publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpidanny/gm-lambda-layer/HEAD/publish.sh -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpidanny/gm-lambda-layer/HEAD/test.sh -------------------------------------------------------------------------------- /test/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpidanny/gm-lambda-layer/HEAD/test/image1.jpg -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpidanny/gm-lambda-layer/HEAD/test/index.js -------------------------------------------------------------------------------- /test/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpidanny/gm-lambda-layer/HEAD/test/main.py --------------------------------------------------------------------------------