Skip to content

Commit 25a6690

Browse files
committed
feat: update PostgreSQL client to 18
This allows operation against PostgreSQL 18 servers.
1 parent 5e4b779 commit 25a6690

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ ENV OPENSSH_VERSION="1:9.9p1-3ubuntu3"
6060
# renovate: repo=https://archive.ubuntu.com/ubuntu release=plucky depName=python3.13-dev
6161
ENV PYTHON_VERSION="3.13.3-1ubuntu0.3"
6262
# plusky-pgpg misses arm64, use noble-pgdg instead
63-
# renovate: repo=https://apt.postgresql.org/pub/repos/apt release=noble-pgdg depName=postgresql-client-17
64-
ENV POSTGRESQL_VERSION="17.6-2.pgdg24.04+1"
63+
# renovate: repo=https://apt.postgresql.org/pub/repos/apt release=noble-pgdg depName=postgresql-client-18
64+
ENV POSTGRESQL_VERSION="18.0-1.pgdg24.04+3"
6565

6666
# Install dependencies
6767
# hadolint ignore=DL3008,DL3013,SC2046,DL3003
@@ -103,7 +103,7 @@ RUN \
103103
&& echo "deb [signed-by=/etc/apt/keyrings/git-core.launchpad.net.asc] https://ppa.launchpadcontent.net/git-core/ppa/ubuntu plucky main" > /etc/apt/sources.list.d/git.list \
104104
&& apt-get update \
105105
&& apt-get install --no-install-recommends -y \
106-
postgresql-client-17="${POSTGRESQL_VERSION}" \
106+
postgresql-client-18="${POSTGRESQL_VERSION}" \
107107
git="${GIT_VERSION}" \
108108
git-svn \
109109
&& apt-get clean \

0 commit comments

Comments
 (0)