From 5295948b8cd7041eeaf394925920f073db7d2192 Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Wed, 7 May 2025 03:20:30 +0300 Subject: [PATCH] Add postgresql-client to Dockerfile dependencies The addition of `postgresql-client` ensures tools relying on PostgreSQL are available within the container. This change improves compatibility with PostgreSQL-based workflows and resolves potential missing dependencies. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 95bda3aa..ed44d27e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,6 +23,7 @@ RUN set -eux; \ graphviz \ binutils \ libproj-dev \ + postgresql-client \ gdal-bin; \ rm -rf /var/lib/apt/lists/*; \ pip install --upgrade pip; \