blob: 53e9099da9e1dc00c1d5276ccb7b9172cedc9f3c (
plain)
1
2
3
4
5
6
7
8
9
|
# Description: Make the zip file for the layer for the transform & load
# lambda functions
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/
|