File tree Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ awslocal sns subscribe \
1414 --protocol email \
1515 --notification-endpoint my-email@example.com
1616
17- (cd lambdas/presign; rm -f lambda.zip; zip lambda.zip handler.py)
1817awslocal lambda create-function \
1918 --function-name presign \
2019 --runtime python3.11 \
@@ -29,8 +28,6 @@ awslocal lambda wait function-active-v2 --function-name presign
2928awslocal lambda create-function-url-config \
3029 --function-name presign \
3130 --auth-type NONE
32-
33- (cd lambdas/list; rm -f lambda.zip; zip lambda.zip handler.py)
3431awslocal lambda create-function \
3532 --function-name list \
3633 --runtime python3.11 \
@@ -46,15 +43,6 @@ awslocal lambda create-function-url-config \
4643 --function-name list \
4744 --auth-type NONE
4845
49- (
50- cd lambdas/resize
51- rm -rf package lambda.zip
52- mkdir package
53- pip install -r requirements.txt -t package --platform manylinux2014_x86_64 --only-binary=:all:
54- zip lambda.zip handler.py
55- cd package
56- zip -r ../lambda.zip * ;
57- )
5846awslocal lambda create-function \
5947 --function-name resize \
6048 --runtime python3.11 \
You can’t perform that action at this time.
0 commit comments