Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ on:
pull_request:

env:
GDAL_VERSION: 3.8.3
GDAL_VERSION_TAG: 3.8
GDAL_VERSION: 3.10.2
GDAL_VERSION_TAG: 3.10

jobs:
build:
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

- Add support for Python 3.12 and 3.13
- Update deploy.py script compatible runtimes list to currently-available runtimes
- update versions:
- GDAL: 3.10.2 "Gulf of Mexico"

## 2024-02-02.patch1

Expand Down
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,23 @@

Based on `public.ecr.aws/lambda/provided:al2` (AmazonLinux 2)

- GDAL 3.8.3
- **ghcr.io/lambgeo/lambda-gdal:3.8** (Fev 2024)
- GDAL 3.10.2
- **ghcr.io/lambgeo/lambda-gdal:3.10.2** (Feb 2025)

Runtimes images:

- Python (based on `public.ecr.aws/lambda/python:{version}`)
- **ghcr.io/lambgeo/lambda-gdal:3.10-python3.9**
- **ghcr.io/lambgeo/lambda-gdal:3.10-python3.10**
- **ghcr.io/lambgeo/lambda-gdal:3.10-python3.11**
- **ghcr.io/lambgeo/lambda-gdal:3.10-python3.12**
- **ghcr.io/lambgeo/lambda-gdal:3.10-python3.13**

**archived**
- **ghcr.io/lambgeo/lambda-gdal:3.8**
- **ghcr.io/lambgeo/lambda-gdal:3.8-python3.9**
- **ghcr.io/lambgeo/lambda-gdal:3.8-python3.10**
- **ghcr.io/lambgeo/lambda-gdal:3.8-python3.11**

**archived**
- **ghcr.io/lambgeo/lambda-gdal:3.6**
- **ghcr.io/lambgeo/lambda-gdal:3.6-python3.9**
- **ghcr.io/lambgeo/lambda-gdal:3.6-python3.10**
Expand All @@ -43,7 +49,7 @@ see: <https://github.com/lambgeo/docker-lambda/pkgs/container/lambda-gdal>
#### 1. Create Dockerfile

```Dockerfile
FROM ghcr.io/lambgeo/lambda-gdal:3.8 AS gdal
FROM ghcr.io/lambgeo/lambda-gdal:3.10 AS gdal

# We use the official AWS Lambda image
FROM public.ecr.aws/lambda/{RUNTIME: python|node|go...}:{RUNTIME version}
Expand Down
Loading