From b6afe92bd58666003f273b72c96e35487482c7cc Mon Sep 17 00:00:00 2001 From: Alexey Masterov Date: Fri, 25 Apr 2025 10:54:41 +0200 Subject: [PATCH] add a staged install --- compute/compute-node.Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/compute/compute-node.Dockerfile b/compute/compute-node.Dockerfile index 1ec48cd7be..3fbc9c8148 100644 --- a/compute/compute-node.Dockerfile +++ b/compute/compute-node.Dockerfile @@ -299,6 +299,7 @@ RUN ./autogen.sh && \ make -j $(getconf _NPROCESSORS_ONLN) install && \ cd extensions/postgis && \ make clean && \ + make staged-install && \ make -j $(getconf _NPROCESSORS_ONLN) install && \ echo 'trusted = true' >> /usr/local/pgsql/share/extension/postgis.control && \ echo 'trusted = true' >> /usr/local/pgsql/share/extension/postgis_raster.control && \