Skip to content

Commit 96fec01

Browse files
committed
Update PostgreSQL version to 18 in Dockerfiles for Ubuntu focal and noble
1 parent 90b7b55 commit 96fec01

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dockerfiles/ubuntu-focal-all/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ RUN ( [ ubuntu != debian ] || [ focal != buster ] ) || ( \
4444

4545
# install build tools and PostgreSQL development files
4646

47-
RUN echo 'deb http://apt.postgresql.org/pub/repos/apt/ focal-pgdg main 17' > /etc/apt/sources.list.d/pgdg.list \
47+
RUN echo 'deb http://apt.postgresql.org/pub/repos/apt/ focal-pgdg main 18' > /etc/apt/sources.list.d/pgdg.list \
4848
&& apt-get update \
4949
&& apt-get install -y --no-install-recommends \
5050
autotools-dev \
@@ -70,7 +70,7 @@ RUN echo 'deb http://apt.postgresql.org/pub/repos/apt/ focal-pgdg main 17' > /et
7070
libxslt-dev \
7171
lintian \
7272
postgresql-server-dev-all \
73-
postgresql-server-dev-17 \
73+
postgresql-server-dev-18 \
7474
wget \
7575
zlib1g-dev \
7676
python3-pip \

dockerfiles/ubuntu-noble-all/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ RUN curl https://install.citusdata.com/community/deb.sh | bash \
104104
&& rm -rf /var/lib/apt/lists/*
105105

106106
# patch pg_buildext to use multiple processors
107-
COPY make_pg_buildext_parallel.patch /
108-
RUN patch `which pg_buildext` < /make_pg_buildext_parallel.patch
107+
# COPY make_pg_buildext_parallel.patch /
108+
# RUN patch `which pg_buildext` < /make_pg_buildext_parallel.patch
109109

110110

111111
# install cmake from source

0 commit comments

Comments
 (0)