-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDockerfile
54 lines (50 loc) · 2.03 KB
/
Dockerfile
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
44
45
46
47
48
49
50
51
52
53
54
# https://github.com/lambci/docker-lambda
FROM lambci/lambda:build-python3.7
ENV AWS_DEFAULT_REGION us-east-1
ENV region us-east-1
ENV bucket_name aws-lambda-layer-pandas
# https://github.com/clerk67/numpy-layer/blob/master/Dockerfile
#
# last line of find ... from
# https://github.com/iopipe/iopipe-python/blob/master/publish-layers.sh
# Removed matplotlib because otherwise the lambda layer will exceed the max of around 260MB
RUN pip install --upgrade pip && \
pip install -t layer pandas numpy && \
find layer -name '__pycache__' -exec rm -fr {} +
RUN zip -ry9 layer.zip layer
# https://github.com/mattmcclean/pandas-lambda-layer/blob/master/build.sh
# RUN aws lambda publish-layer-version --layer-name ${LAYER_NAME} --zip-file fileb://layer.zip --compatible-runtimes $COMPATIBLE_RUNTIMES
# https://github.com/iopipe/iopipe-python/blob/master/publish-layers.sh
CMD export region=us-east-1 \
&& \
export PY3X_DIST=layer.zip \
&& \
export py3x_s3key=layer.zip \
&& \
echo "Uploading ${PY3X_DIST} to s3://${bucket_name}/${py3x_s3key}" \
&& \
aws --region $region s3 cp $PY3X_DIST "s3://${bucket_name}/${py3x_s3key}" \
&& \
py3x_version=$(aws lambda publish-layer-version \
--layer-name Pandas \
--content "S3Bucket=${bucket_name},S3Key=${py3x_s3key}" \
--description "Pandas Layer for Python 3.7" \
--compatible-runtimes python3.7 \
--license-info "Apache 2.0" \
--region $region \
--output text \
--query Version) \
&& \
echo "published python3.x layer version ${py3x_version} to ${region}" \
&& \
echo "Setting public permissions for python3.x layer version ${py3x_version} in ${region}" \
&& \
aws lambda add-layer-version-permission \
--layer-name Pandas \
--version-number $py3x_version \
--statement-id public \
--action lambda:GetLayerVersion \
--principal "*" \
--region $region \
&& \
echo "Public permissions set for python3.x Layer version ${py3x_version} in region ${region}"