File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,18 @@ This is the tricky part. This project relies on third party projects that requir
3131 $> rm -rf .env
3232 $> zip -r letslambda.zip .
3333
34+ If you're development environment is running on Debian Linux, you need the following commands:
35+
36+ $> apt-get install -V python-virtualenv python-pip libssl-dev python-dev libffi-dev
37+ $> virtualenv .env
38+ $> source .env/bin/activate
39+ $> pip install -r requirements.txt
40+ $> mv .env/lib/python2.7/site-packages/* .
41+ $> mv .env/lib64/python2.7/site-packages/* .
42+ $> mv .env/src/acme/acme/acme* .
43+ $> rm -rf .env
44+ $> zip -r letslambda.zip .
45+
3446Once this is done, all you have to do is to upload your lamnbda function to an S3 bucket.
3547
3648 $> aws s3 cp letslambda.zip s3://bucket/
You can’t perform that action at this time.
0 commit comments