docker-compose run --rm build
S3_BUCKET=ourrecipes
STACK_NAME=ourrecipes-api
aws cloudformation package --template-file template.yaml --output-template-file packaged.yaml --s3-bucket $S3_BUCKET
aws cloudformation deploy --template-file packaged.yaml --capabilities CAPABILITY_IAM --stack-name $STACK_NAME
aws cloudformation describe-stacks --query "Stacks[0].Outputs" --stack-name $STACK_NAME
S3_BUCKET=ourrecipes; STACK_NAME=ourrecipes-api; docker-compose run --rm build; aws cloudformation package --template-file template.yaml --output-template-file packaged.yaml --s3-bucket $S3_BUCKET; aws cloudformation deploy --template-file packaged.yaml --capabilities CAPABILITY_IAM --stack-name $STACK_NAME; aws cloudformation describe-stacks --query "Stacks[0].Outputs" --stack-name $STACK_NAME;