We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5bf5ba8 + d3d3a56 commit c0d6e10Copy full SHA for c0d6e10
Dockerfile.base
@@ -5,11 +5,9 @@ FROM lambdalinux/baseimage-amzn:2017.03-004
5
6
RUN \
7
yum -y update; \
8
- # python 3.6
9
yum install -y python36-devel python36-pip; \
10
pip-3.6 install boto3 pytest; \
11
pip-3.6 install --upgrade pip; \
12
- # python 2.7
13
yum install -y python27-devel python27-pip; \
14
pip-2.7 install boto3 pytest; \
15
pip-2.7 install --upgrade pip; \
bin/lambda-package-base.sh
@@ -33,7 +33,7 @@ rsync -ax $PREFIX/lib64/python$PYVER/site-packages/ $DEPLOY_DIR/ \
33
34
# copy GDAL_DATA files over
35
mkdir -p $DEPLOY_DIR/share
36
-rsync -ax $PREFIX/share/gdal share/
+rsync -ax $PREFIX/share/gdal $DEPLOY_DIR/share/
37
38
# zip up deploy package
39
cd $DEPLOY_DIR
0 commit comments