Created
June 29, 2020 02:54
-
-
Save Hironsan/c2c305999a6a13a69a35540ef8654571 to your computer and use it in GitHub Desktop.
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
REGION=us-west-1 | |
RUNTIME=python3.7 | |
docker run \ | |
-v $(pwd):/opt \ | |
-it lambci/lambda:build-$RUNTIME \ | |
pip install spacy -t /opt/python | |
zip -r spacy.zip python/ | |
aws lambda publish-layer-version \ | |
--layer-name spaCy \ | |
--region $REGION \ | |
--description "spaCy for Lambda Layers" \ | |
--zip-file fileb://spacy.zip \ | |
--compatible-runtimes $RUNTIME | |
rm -rf python *.zip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment