blob: c8b4d2acddc2bcda3581eedd68a2b217a5d2bbb6 (
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_01/lib/python3.11/site-packages
pip3 install --upgrade -r requirements_01.txt -t python_01/lib/python3.11/site-packages
rm layer_01.zip
zip -r layer_01.zip python_01
rm -r python_01/
|