Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 921 Bytes

File metadata and controls

32 lines (21 loc) · 921 Bytes

Docker Node GDAL

A Docker image based on node:20-bookworm-slim with gdal-bin installed, maintained by axiacore.

Overview

This image is designed for projects that require Nodejs and GDAL (Geospatial Data Abstraction Library) tools for geospatial data processing and manipulation.

  • Base Image: node:20-bookworm-slim
  • Includes: gdal-bin (GDAL command-line utilities)

Usage

You can use this image as a base for your own Dockerfiles or directly in your CI/CD pipelines.

FROM camilonova/node-20-gdal-bin:latest
# Add your application files and install dependencies as needed

How to Build

To build and publish the image:

docker build --platform linux/amd64 -t node-20-gdal-bin .
docker tag node-20-gdal-bin camilonova/node-20-gdal-bin:latest
docker push camilonova/node-20-gdal-bin:latest

Built by axiacore.