-
Notifications
You must be signed in to change notification settings - Fork 3
/
build_one.sh
43 lines (30 loc) · 1.06 KB
/
build_one.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/bash
set -e
if [[ $# -eq 0 ]] ; then
echo 'Please provide name as first argument and runtime as second argument'
exit 0
fi
NAME=$1
LAMBDA_RUNTIME=$2
echo "*** NAME=$NAME LAMBDA_RUNTIME=$LAMBDA_RUNTIME "
DEPLOYMENT_FILE=deployment-$NAME-$LAMBDA_RUNTIME.zip
[[ -d $DEPLOYMENT_FILE ]] && rm -f $DEPLOYMENT_FILE
cd $NAME
[[ -d .package ]] && rm -rf .package
# Build requirements in Lambda environment
docker run --platform linux/amd64 -v "$PWD":/var/task "public.ecr.aws/sam/build-$LAMBDA_RUNTIME" /bin/sh -c "pip install -r requirements.txt -t .package; exit"
# Create deployment package
echo "*** Adding requirements to $DEPLOYMENT_FILE"
cd .package
zip -r ../$DEPLOYMENT_FILE . > /dev/null
# Add app code
echo "*** Adding app to $DEPLOYMENT_FILE"
cd ..
# ./* => Includes all non-hidden files/directories eg excludes .package directory
# -x "__pycache" => Exclude __pycache__ directory
zip $DEPLOYMENT_FILE ./* -x "*__pycache__*"
# Move to correct location
mv $DEPLOYMENT_FILE ..
cd ..
echo "*** Display contents of $DEPLOYMENT_FILE"
unzip -l $DEPLOYMENT_FILE