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:
parent
87e124f614
commit
5295948b8c
1 changed files with 1 additions and 0 deletions
|
|
@ -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; \
|
||||
|
|
|
|||
Loading…
Reference in a new issue