docker-lambda icon indicating copy to clipboard operation
docker-lambda copied to clipboard

AWS Lambda friendly GDAL Docker images and AWS Lambda layer

Results 9 docker-lambda issues
Sort by recently updated
recently updated
newest added

Not sure how to document this, but I managed to build a container with Geopandas and Fiona based on this project. Thanks so much! A couple gotchas: 1) I had...

I am using the ARN for a lambda layer (arn:aws:lambda:us-west-2:524387336408:layer:gdal32:3) and adding it to my lambda function, with my lambda function in nodejs. I am trying to use [ogr2ogr](https://www.npmjs.com/package/ogr2ogr) in...

bug

https://github.com/lambgeo/docker-lambda/blob/b165d79470ca282a5a08f16fe25ece82fb3420be/dockerfiles/common/base-2/Dockerfile#L25 https://github.com/facebook/zstd/releases/tag/v1.4.7

https://aws.amazon.com/fr/blogs/aws/new-for-aws-lambda-container-image-support/

### Problem: zip is not in this image `ghcr.io/lambgeo/lambda-gdal:3.5-python3.9` ### Workaround: `RUN yum install zip -y`

Hello! Thank you for the project, it's really promising for my use case. I'm trying the `Advanced` usage (https://github.com/lambgeo/docker-lambda?tab=readme-ov-file#2-advanced-need-other-dependencies) and I'm having the following error when building the image: ```...

LAMBDA_TASK_ROOT should always be defined in public.ecr.aws/lambda/* to be /var/task. I was wondering why the example lambda packager has PACKAGE_PREFIX was also being set to /var/task instead of using LAMBDA_TASK_ROOT?

Not proficient in C++, but running into this problem when trying to run ogr2ogr with a parquet output: ``` import subprocess return_code = subprocess.Popen(["ogr2ogr", "-f", "Parquet", "somedestination", "somelocation", "--debug", "ON"],...