-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy.sh
executable file
·25 lines (13 loc) · 1020 Bytes
/
deploy.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
set -e
stateDefinition=$(cat aws/state-machine.asl.json | tr -d '\n')
sed -e "s/STATE_FUNCTION_ASL_JSON/$stateDefinition/" aws/cf-template.yml > aws/cf-template-tmp.yml
aws cloudformation deploy --template-file aws/cf-template-tmp.yml --stack-name image-processing-demo --capabilities CAPABILITY_NAMED_IAM
inBucketName=`aws cloudformation describe-stack-resource --stack-name image-processing-demo --logical-resource-id ImageInBucket --query 'StackResourceDetail.PhysicalResourceId' --output text`
npm run --prefix nsfwcheck build
zip -r9q -j ./nsfwcheck/index.zip ./nsfwcheck/build/
aws lambda update-function-code --function-name NSFWCheckerLambda --zip-file fileb://nsfwcheck/index.zip --publish --no-cli-pager
npm run --prefix grayscaler build
zip -r9q -j ./grayscaler/index.zip ./grayscaler/build/
aws lambda update-function-code --function-name GrayscalerLambda --zip-file fileb://grayscaler/index.zip --publish --no-cli-pager
aws s3 cp apple.png s3://$inBucketName/apple.png
rm aws/cf-template-tmp.yml