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.
This commit is contained in:
Egor Pavlovich Gorbunov 2025-05-07 03:20:30 +03:00
parent 87e124f614
commit 5295948b8c

View file

@ -23,6 +23,7 @@ RUN set -eux; \
graphviz \ graphviz \
binutils \ binutils \
libproj-dev \ libproj-dev \
postgresql-client \
gdal-bin; \ gdal-bin; \
rm -rf /var/lib/apt/lists/*; \ rm -rf /var/lib/apt/lists/*; \
pip install --upgrade pip; \ pip install --upgrade pip; \