Open
Description
Hi,
I have a serverless project that uses a couple of python libs. One of them is gdal.
My requirment.txt looks like this
numpy xarray boto3 gdal
and part of my serverless.yml looks like this
When I have dockerizePip: true
or dockerizePip: no linux
deploying with sls deploy
I get below error
If I set dockerizePip: false
and do 'sls deploy' I get below error
If I remove gdal from the requiment.txt and set dockerizePip: false
and do 'sls deploy' it works fine but the function will not have gdal on AWS.
This is in packages.json "serverless-python-requirements": "^4.1.1"