blob: 145ea82e7a4620a37e02f24124860489ecbfe246 (
plain)
1
2
3
4
5
6
7
8
|
# Description: Make the zip file for the layer for the extract lambda function
cd "$(dirname "$0")/.."
mkdir -p python/lib/python3.11/site-packages
pip3 install --upgrade -r requirements.txt -t python/lib/python3.11/site-packages
rm layer.zip
zip -r layer.zip python
rm -r python/
|