Created
November 20, 2021 12:02
-
-
Save tuergeist/ca7186d115193b1d032a3433d58cb942 to your computer and use it in GitHub Desktop.
Pack dpendencies for aws lambda
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "*** Packing environment ***" | |
pipenv lock --requirements > requirements.txt | |
pip install -r requirements.txt --prefix $LOCAL_PKG | |
PACKAGES_DIR=$(find . -name site-packages) | |
cd $PACKAGES_DIR | |
zip -r $ZIPFILE . | |
cd $OUR_WORKDIR |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment