You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ Creates an AWS Lambda Layers zip file that is **optimized** for: [Lambda Layer d
5
5
This function was created to address these issues:
6
6
7
7
- Many methods of creating Lambda zip files for Python functions don't work for Lambda Layers
8
-
- This is due to the fact Lambda Layers require specific library paths within the zip, where regular Lambda zips dont
8
+
- This is due to the fact Lambda Layers require specific library paths within the zip, unlike regular Lambda zip files
9
9
- Compiled dependancies must be created in an environment that matches the Lambda runtime
10
10
- Reduce size of zip file by removing unnecessary libraries and files
11
11
@@ -16,7 +16,7 @@ This function was created to address these issues:
16
16
- Builds zip file containing Python dependancies and places the libraries into the proper directory structure for lambda layers
17
17
- Ensures compiled libraries are compatible with Lambda environment by using [docker container](https://hub.docker.com/r/lambci/lambda) that mimics the lambda runtime environment
18
18
- Optimized the zip size by removing `.pyc` files and unnecessary libraries
0 commit comments