Build custom AWS Lambda layer for Scikit-image
问题 Outline: I need to use scikit-image inside some AWS lambda functions, so I'm looking to build a custom AWS lambda layer containing scikit-image . My questions in general should apply to any python module, notably scikit-learn, or any custom layer in general I think. Background: After much googling and reading it seems the best way to do that is to use docker to run the AWS lambda runtime locally, and then inside there install/compile scikit-image (or whichever module you're looking for).