From 789333e8080933263660b40d24d54bc2e5202c94 Mon Sep 17 00:00:00 2001 From: Cail Daley Date: Mon, 20 Apr 2026 01:32:14 +0200 Subject: [PATCH 1/2] fix: add libproj-dev to unblock skyproj build skyproj 2.3.0 (pulled transitively via cs_util==0.1.9) now requires the PROJ C library at build time, breaking the develop Docker build since 2026-03-31. Co-Authored-By: Claude Opus 4.7 (1M context) --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 6e8cc4cb..18d66354 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,6 +37,7 @@ RUN apt-get update -y --quiet --fix-missing && \ make \ openmpi-bin \ libopenmpi-dev \ + libproj-dev \ pkg-config \ protobuf-compiler \ psfex=3.21.1-1 \ From 61e5ffa8303a3f303ab8f7d76e80706d3bd66414 Mon Sep 17 00:00:00 2001 From: Cail Daley Date: Mon, 20 Apr 2026 01:43:18 +0200 Subject: [PATCH 2/2] fix: also install proj-bin for skyproj build skyproj setup.py looks for the proj executable on PATH (or PROJ_DIR). libproj-dev only provides headers; proj-bin provides the binary. Co-Authored-By: Claude Opus 4.7 (1M context) --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 18d66354..8fd02252 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,6 +38,7 @@ RUN apt-get update -y --quiet --fix-missing && \ openmpi-bin \ libopenmpi-dev \ libproj-dev \ + proj-bin \ pkg-config \ protobuf-compiler \ psfex=3.21.1-1 \