diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d74e310..24dbffb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ on: pull_request: env: - GDAL_VERSION: 3.8.2 + GDAL_VERSION: 3.8.3 GDAL_VERSION_TAG: 3.8 jobs: diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index e4b9db6..740dffe 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -181,7 +181,7 @@ RUN mkdir /tmp/openjpeg \ && rm -rf /tmp/openjpeg # geos -ENV GEOS_VERSION=3.11.2 +ENV GEOS_VERSION=3.12.1 RUN mkdir /tmp/geos \ && curl -sfL https://github.com/libgeos/geos/archive/refs/tags/${GEOS_VERSION}.tar.gz | tar zxf - -C /tmp/geos --strip-components=1 \ && cd /tmp/geos \ @@ -207,7 +207,7 @@ RUN mkdir /tmp/geos \ # && make -j $(nproc) --silent && make install \ # && rm -rf /tmp/proj -ENV PROJ_VERSION=9.2.0 +ENV PROJ_VERSION=9.3.1 RUN mkdir /tmp/proj && mkdir /tmp/proj/data \ && curl -sfL https://github.com/OSGeo/proj/archive/${PROJ_VERSION}.tar.gz | tar zxf - -C /tmp/proj --strip-components=1 \ && cd /tmp/proj \ diff --git a/dockerfiles/runtimes/nodejs b/dockerfiles/runtimes/nodejs index 1bb0d87..59fe4f0 100644 --- a/dockerfiles/runtimes/nodejs +++ b/dockerfiles/runtimes/nodejs @@ -1,7 +1,7 @@ -ARG GDAL_VERSION +ARG GDAL_VERSION_TAG ARG RUNTIME_VERSION -FROM ghcr.io/lambgeo/lambda-gdal:${GDAL_VERSION} as gdal +FROM ghcr.io/lambgeo/lambda-gdal:${GDAL_VERSION_TAG} as gdal FROM public.ecr.aws/lambda/nodejs:${RUNTIME_VERSION} diff --git a/dockerfiles/runtimes/python b/dockerfiles/runtimes/python index f0c0d90..a666c62 100644 --- a/dockerfiles/runtimes/python +++ b/dockerfiles/runtimes/python @@ -1,7 +1,7 @@ -ARG GDAL_VERSION +ARG GDAL_VERSION_TAG ARG RUNTIME_VERSION -FROM ghcr.io/lambgeo/lambda-gdal:${GDAL_VERSION} as gdal +FROM ghcr.io/lambgeo/lambda-gdal:${GDAL_VERSION_TAG} as gdal FROM public.ecr.aws/lambda/python:${RUNTIME_VERSION} diff --git a/scripts/build.sh b/scripts/build.sh index d8bf951..55f9356 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -15,7 +15,7 @@ docker buildx build \ docker buildx build \ --platform=linux/amd64 \ - --build-arg GDAL_VERSION=${GDAL_VERSION} \ + --build-arg GDAL_VERSION_TAG=${GDAL_VERSION_TAG} \ --build-arg RUNTIME_VERSION=${RUNTIME_VERSION} \ -f dockerfiles/runtimes/${RUNTIME} \ -t ghcr.io/lambgeo/lambda-gdal:${GDAL_VERSION_TAG}-${RUNTIME}${RUNTIME_VERSION} .