Skip to content

Commit 9727dcc

Browse files
author
CloudNativePG Automated Updates
committed
Daily automatic update
1 parent 012f3b6 commit 9727dcc

30 files changed

+140
-110
lines changed

Debian/13/bookworm/.versions.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"BARMAN_VERSION": "3.12.1",
3-
"IMAGE_RELEASE_VERSION": "4",
3+
"IMAGE_RELEASE_VERSION": "5",
44
"POSTGRES_IMAGE_LAST_UPDATED": "2025-03-01T06:07:29.255243Z",
55
"POSTGRES_IMAGE_VERSION": "13.20-bookworm"
66
}

Debian/13/bookworm/Dockerfile

+4-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ FROM postgres:13.20-bookworm
2020
LABEL name="PostgreSQL Container Images" \
2121
vendor="The CloudNativePG Contributors" \
2222
version="${PG_VERSION}" \
23-
release="4" \
23+
release="5" \
2424
summary="PostgreSQL Container images." \
2525
description="This Docker image contains PostgreSQL and Barman Cloud based on Postgres 13.20-bookworm."
2626

@@ -43,13 +43,16 @@ RUN set -xe; \
4343
RUN set -xe; \
4444
apt-get update; \
4545
apt-get install -y --no-install-recommends \
46+
# We require build-essential and python3-dev to build lz4 on arm64 since there isn't a pre-compiled wheel available
47+
build-essential python3-dev \
4648
python3-pip \
4749
python3-psycopg2 \
4850
python3-setuptools \
4951
; \
5052
pip3 install --break-system-packages --upgrade pip; \
5153
# TODO: Remove --no-deps once https://github.com/pypa/pip/issues/9644 is solved
5254
pip3 install --break-system-packages --no-deps -r requirements.txt; \
55+
apt-get remove -y --purge --autoremove build-essential python3-dev; \
5356
rm -rf /var/lib/apt/lists/*;
5457

5558
# Change the uid of postgres to 26

Debian/13/bookworm/requirements.txt

+9-9
Original file line numberDiff line numberDiff line change
@@ -338,9 +338,9 @@ cryptography==44.0.2 \
338338
# azure-storage-blob
339339
# msal
340340
# pyjwt
341-
google-api-core==2.24.1 \
342-
--hash=sha256:bc78d608f5a5bf853b80bd70a795f703294de656c096c0968320830a4bc280f1 \
343-
--hash=sha256:f8b36f5456ab0dd99a1b693a40a31d1e7757beea380ad1b38faaf8941eae9d8a
341+
google-api-core==2.24.2 \
342+
--hash=sha256:810a63ac95f3c441b7c0e43d344e372887f62ce9071ba972eacf32672e072de9 \
343+
--hash=sha256:81718493daf06d96d6bc76a91c23874dbf2fac0adbbf542831b805ee6e974696
344344
# via
345345
# google-cloud-core
346346
# google-cloud-storage
@@ -351,9 +351,9 @@ google-auth==2.38.0 \
351351
# google-api-core
352352
# google-cloud-core
353353
# google-cloud-storage
354-
google-cloud-core==2.4.2 \
355-
--hash=sha256:7459c3e83de7cb8b9ecfec9babc910efb4314030c56dd798eaad12c426f7d180 \
356-
--hash=sha256:a4fcb0e2fcfd4bfe963837fad6d10943754fd79c1a50097d68540b6eb3d67f35
354+
google-cloud-core==2.4.3 \
355+
--hash=sha256:1fab62d7102844b278fe6dead3af32408b1df3eb06f5c7e8634cbd40edc4da53 \
356+
--hash=sha256:5130f9f4c14b4fafdff75c79448f9495cfade0d8775facf1b09c3bf67e027f6e
357357
# via google-cloud-storage
358358
google-cloud-storage==3.1.0 \
359359
--hash=sha256:944273179897c7c8a07ee15f2e6466a02da0c7c4b9ecceac2a26017cb2972049 \
@@ -457,9 +457,9 @@ portalocker==2.10.1 \
457457
--hash=sha256:53a5984ebc86a025552264b459b46a2086e269b21823cb572f8f28ee759e45bf \
458458
--hash=sha256:ef1bf844e878ab08aee7e40184156e1151f228f103aa5c6bd0724cc330960f8f
459459
# via msal-extensions
460-
proto-plus==1.26.0 \
461-
--hash=sha256:6e93d5f5ca267b54300880fff156b6a3386b3fa3f43b1da62e680fc0c586ef22 \
462-
--hash=sha256:bf2dfaa3da281fc3187d12d224c707cb57214fb2c22ba854eb0c105a3fb2d4d7
460+
proto-plus==1.26.1 \
461+
--hash=sha256:13285478c2dcf2abb829db158e1047e2f1e8d63a077d94263c2b88b043c75a66 \
462+
--hash=sha256:21a515a4c4c0088a773899e23c7bbade3d18f9c66c73edd4c7ee3816bc96a012
463463
# via google-api-core
464464
protobuf==5.29.3 \
465465
--hash=sha256:0a18ed4a24198528f2333802eb075e59dea9d679ab7a6c5efb017a59004d849f \

Debian/13/bullseye/.versions.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"BARMAN_VERSION": "3.12.1",
3-
"IMAGE_RELEASE_VERSION": "4",
3+
"IMAGE_RELEASE_VERSION": "5",
44
"POSTGRES_IMAGE_LAST_UPDATED": "2025-03-01T00:08:47.954358Z",
55
"POSTGRES_IMAGE_VERSION": "13.20-bullseye"
66
}

Debian/13/bullseye/Dockerfile

+4-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ FROM postgres:13.20-bullseye
2020
LABEL name="PostgreSQL Container Images" \
2121
vendor="The CloudNativePG Contributors" \
2222
version="${PG_VERSION}" \
23-
release="4" \
23+
release="5" \
2424
summary="PostgreSQL Container images." \
2525
description="This Docker image contains PostgreSQL and Barman Cloud based on Postgres 13.20-bullseye."
2626

@@ -43,13 +43,16 @@ RUN set -xe; \
4343
RUN set -xe; \
4444
apt-get update; \
4545
apt-get install -y --no-install-recommends \
46+
# We require build-essential and python3-dev to build lz4 on arm64 since there isn't a pre-compiled wheel available
47+
build-essential python3-dev \
4648
python3-pip \
4749
python3-psycopg2 \
4850
python3-setuptools \
4951
; \
5052
pip3 install --upgrade pip; \
5153
# TODO: Remove --no-deps once https://github.com/pypa/pip/issues/9644 is solved
5254
pip3 install --no-deps -r requirements.txt; \
55+
apt-get remove -y --purge --autoremove build-essential python3-dev; \
5356
rm -rf /var/lib/apt/lists/*;
5457

5558
# Change the uid of postgres to 26

Debian/13/bullseye/requirements.txt

+9-9
Original file line numberDiff line numberDiff line change
@@ -338,9 +338,9 @@ cryptography==44.0.2 \
338338
# azure-storage-blob
339339
# msal
340340
# pyjwt
341-
google-api-core==2.24.1 \
342-
--hash=sha256:bc78d608f5a5bf853b80bd70a795f703294de656c096c0968320830a4bc280f1 \
343-
--hash=sha256:f8b36f5456ab0dd99a1b693a40a31d1e7757beea380ad1b38faaf8941eae9d8a
341+
google-api-core==2.24.2 \
342+
--hash=sha256:810a63ac95f3c441b7c0e43d344e372887f62ce9071ba972eacf32672e072de9 \
343+
--hash=sha256:81718493daf06d96d6bc76a91c23874dbf2fac0adbbf542831b805ee6e974696
344344
# via
345345
# google-cloud-core
346346
# google-cloud-storage
@@ -351,9 +351,9 @@ google-auth==2.38.0 \
351351
# google-api-core
352352
# google-cloud-core
353353
# google-cloud-storage
354-
google-cloud-core==2.4.2 \
355-
--hash=sha256:7459c3e83de7cb8b9ecfec9babc910efb4314030c56dd798eaad12c426f7d180 \
356-
--hash=sha256:a4fcb0e2fcfd4bfe963837fad6d10943754fd79c1a50097d68540b6eb3d67f35
354+
google-cloud-core==2.4.3 \
355+
--hash=sha256:1fab62d7102844b278fe6dead3af32408b1df3eb06f5c7e8634cbd40edc4da53 \
356+
--hash=sha256:5130f9f4c14b4fafdff75c79448f9495cfade0d8775facf1b09c3bf67e027f6e
357357
# via google-cloud-storage
358358
google-cloud-storage==3.1.0 \
359359
--hash=sha256:944273179897c7c8a07ee15f2e6466a02da0c7c4b9ecceac2a26017cb2972049 \
@@ -457,9 +457,9 @@ portalocker==2.10.1 \
457457
--hash=sha256:53a5984ebc86a025552264b459b46a2086e269b21823cb572f8f28ee759e45bf \
458458
--hash=sha256:ef1bf844e878ab08aee7e40184156e1151f228f103aa5c6bd0724cc330960f8f
459459
# via msal-extensions
460-
proto-plus==1.26.0 \
461-
--hash=sha256:6e93d5f5ca267b54300880fff156b6a3386b3fa3f43b1da62e680fc0c586ef22 \
462-
--hash=sha256:bf2dfaa3da281fc3187d12d224c707cb57214fb2c22ba854eb0c105a3fb2d4d7
460+
proto-plus==1.26.1 \
461+
--hash=sha256:13285478c2dcf2abb829db158e1047e2f1e8d63a077d94263c2b88b043c75a66 \
462+
--hash=sha256:21a515a4c4c0088a773899e23c7bbade3d18f9c66c73edd4c7ee3816bc96a012
463463
# via google-api-core
464464
protobuf==5.29.3 \
465465
--hash=sha256:0a18ed4a24198528f2333802eb075e59dea9d679ab7a6c5efb017a59004d849f \

Debian/14/bookworm/.versions.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"BARMAN_VERSION": "3.12.1",
3-
"IMAGE_RELEASE_VERSION": "4",
3+
"IMAGE_RELEASE_VERSION": "5",
44
"POSTGRES_IMAGE_LAST_UPDATED": "2025-03-01T06:07:50.069554Z",
55
"POSTGRES_IMAGE_VERSION": "14.17-bookworm"
66
}

Debian/14/bookworm/Dockerfile

+4-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ FROM postgres:14.17-bookworm
2020
LABEL name="PostgreSQL Container Images" \
2121
vendor="The CloudNativePG Contributors" \
2222
version="${PG_VERSION}" \
23-
release="4" \
23+
release="5" \
2424
summary="PostgreSQL Container images." \
2525
description="This Docker image contains PostgreSQL and Barman Cloud based on Postgres 14.17-bookworm."
2626

@@ -43,13 +43,16 @@ RUN set -xe; \
4343
RUN set -xe; \
4444
apt-get update; \
4545
apt-get install -y --no-install-recommends \
46+
# We require build-essential and python3-dev to build lz4 on arm64 since there isn't a pre-compiled wheel available
47+
build-essential python3-dev \
4648
python3-pip \
4749
python3-psycopg2 \
4850
python3-setuptools \
4951
; \
5052
pip3 install --break-system-packages --upgrade pip; \
5153
# TODO: Remove --no-deps once https://github.com/pypa/pip/issues/9644 is solved
5254
pip3 install --break-system-packages --no-deps -r requirements.txt; \
55+
apt-get remove -y --purge --autoremove build-essential python3-dev; \
5356
rm -rf /var/lib/apt/lists/*;
5457

5558
# Change the uid of postgres to 26

Debian/14/bookworm/requirements.txt

+9-9
Original file line numberDiff line numberDiff line change
@@ -338,9 +338,9 @@ cryptography==44.0.2 \
338338
# azure-storage-blob
339339
# msal
340340
# pyjwt
341-
google-api-core==2.24.1 \
342-
--hash=sha256:bc78d608f5a5bf853b80bd70a795f703294de656c096c0968320830a4bc280f1 \
343-
--hash=sha256:f8b36f5456ab0dd99a1b693a40a31d1e7757beea380ad1b38faaf8941eae9d8a
341+
google-api-core==2.24.2 \
342+
--hash=sha256:810a63ac95f3c441b7c0e43d344e372887f62ce9071ba972eacf32672e072de9 \
343+
--hash=sha256:81718493daf06d96d6bc76a91c23874dbf2fac0adbbf542831b805ee6e974696
344344
# via
345345
# google-cloud-core
346346
# google-cloud-storage
@@ -351,9 +351,9 @@ google-auth==2.38.0 \
351351
# google-api-core
352352
# google-cloud-core
353353
# google-cloud-storage
354-
google-cloud-core==2.4.2 \
355-
--hash=sha256:7459c3e83de7cb8b9ecfec9babc910efb4314030c56dd798eaad12c426f7d180 \
356-
--hash=sha256:a4fcb0e2fcfd4bfe963837fad6d10943754fd79c1a50097d68540b6eb3d67f35
354+
google-cloud-core==2.4.3 \
355+
--hash=sha256:1fab62d7102844b278fe6dead3af32408b1df3eb06f5c7e8634cbd40edc4da53 \
356+
--hash=sha256:5130f9f4c14b4fafdff75c79448f9495cfade0d8775facf1b09c3bf67e027f6e
357357
# via google-cloud-storage
358358
google-cloud-storage==3.1.0 \
359359
--hash=sha256:944273179897c7c8a07ee15f2e6466a02da0c7c4b9ecceac2a26017cb2972049 \
@@ -457,9 +457,9 @@ portalocker==2.10.1 \
457457
--hash=sha256:53a5984ebc86a025552264b459b46a2086e269b21823cb572f8f28ee759e45bf \
458458
--hash=sha256:ef1bf844e878ab08aee7e40184156e1151f228f103aa5c6bd0724cc330960f8f
459459
# via msal-extensions
460-
proto-plus==1.26.0 \
461-
--hash=sha256:6e93d5f5ca267b54300880fff156b6a3386b3fa3f43b1da62e680fc0c586ef22 \
462-
--hash=sha256:bf2dfaa3da281fc3187d12d224c707cb57214fb2c22ba854eb0c105a3fb2d4d7
460+
proto-plus==1.26.1 \
461+
--hash=sha256:13285478c2dcf2abb829db158e1047e2f1e8d63a077d94263c2b88b043c75a66 \
462+
--hash=sha256:21a515a4c4c0088a773899e23c7bbade3d18f9c66c73edd4c7ee3816bc96a012
463463
# via google-api-core
464464
protobuf==5.29.3 \
465465
--hash=sha256:0a18ed4a24198528f2333802eb075e59dea9d679ab7a6c5efb017a59004d849f \

Debian/14/bullseye/.versions.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"BARMAN_VERSION": "3.12.1",
3-
"IMAGE_RELEASE_VERSION": "4",
3+
"IMAGE_RELEASE_VERSION": "5",
44
"POSTGRES_IMAGE_LAST_UPDATED": "2025-03-01T00:10:19.709775Z",
55
"POSTGRES_IMAGE_VERSION": "14.17-bullseye"
66
}

Debian/14/bullseye/Dockerfile

+4-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ FROM postgres:14.17-bullseye
2020
LABEL name="PostgreSQL Container Images" \
2121
vendor="The CloudNativePG Contributors" \
2222
version="${PG_VERSION}" \
23-
release="4" \
23+
release="5" \
2424
summary="PostgreSQL Container images." \
2525
description="This Docker image contains PostgreSQL and Barman Cloud based on Postgres 14.17-bullseye."
2626

@@ -43,13 +43,16 @@ RUN set -xe; \
4343
RUN set -xe; \
4444
apt-get update; \
4545
apt-get install -y --no-install-recommends \
46+
# We require build-essential and python3-dev to build lz4 on arm64 since there isn't a pre-compiled wheel available
47+
build-essential python3-dev \
4648
python3-pip \
4749
python3-psycopg2 \
4850
python3-setuptools \
4951
; \
5052
pip3 install --upgrade pip; \
5153
# TODO: Remove --no-deps once https://github.com/pypa/pip/issues/9644 is solved
5254
pip3 install --no-deps -r requirements.txt; \
55+
apt-get remove -y --purge --autoremove build-essential python3-dev; \
5356
rm -rf /var/lib/apt/lists/*;
5457

5558
# Change the uid of postgres to 26

Debian/14/bullseye/requirements.txt

+9-9
Original file line numberDiff line numberDiff line change
@@ -338,9 +338,9 @@ cryptography==44.0.2 \
338338
# azure-storage-blob
339339
# msal
340340
# pyjwt
341-
google-api-core==2.24.1 \
342-
--hash=sha256:bc78d608f5a5bf853b80bd70a795f703294de656c096c0968320830a4bc280f1 \
343-
--hash=sha256:f8b36f5456ab0dd99a1b693a40a31d1e7757beea380ad1b38faaf8941eae9d8a
341+
google-api-core==2.24.2 \
342+
--hash=sha256:810a63ac95f3c441b7c0e43d344e372887f62ce9071ba972eacf32672e072de9 \
343+
--hash=sha256:81718493daf06d96d6bc76a91c23874dbf2fac0adbbf542831b805ee6e974696
344344
# via
345345
# google-cloud-core
346346
# google-cloud-storage
@@ -351,9 +351,9 @@ google-auth==2.38.0 \
351351
# google-api-core
352352
# google-cloud-core
353353
# google-cloud-storage
354-
google-cloud-core==2.4.2 \
355-
--hash=sha256:7459c3e83de7cb8b9ecfec9babc910efb4314030c56dd798eaad12c426f7d180 \
356-
--hash=sha256:a4fcb0e2fcfd4bfe963837fad6d10943754fd79c1a50097d68540b6eb3d67f35
354+
google-cloud-core==2.4.3 \
355+
--hash=sha256:1fab62d7102844b278fe6dead3af32408b1df3eb06f5c7e8634cbd40edc4da53 \
356+
--hash=sha256:5130f9f4c14b4fafdff75c79448f9495cfade0d8775facf1b09c3bf67e027f6e
357357
# via google-cloud-storage
358358
google-cloud-storage==3.1.0 \
359359
--hash=sha256:944273179897c7c8a07ee15f2e6466a02da0c7c4b9ecceac2a26017cb2972049 \
@@ -457,9 +457,9 @@ portalocker==2.10.1 \
457457
--hash=sha256:53a5984ebc86a025552264b459b46a2086e269b21823cb572f8f28ee759e45bf \
458458
--hash=sha256:ef1bf844e878ab08aee7e40184156e1151f228f103aa5c6bd0724cc330960f8f
459459
# via msal-extensions
460-
proto-plus==1.26.0 \
461-
--hash=sha256:6e93d5f5ca267b54300880fff156b6a3386b3fa3f43b1da62e680fc0c586ef22 \
462-
--hash=sha256:bf2dfaa3da281fc3187d12d224c707cb57214fb2c22ba854eb0c105a3fb2d4d7
460+
proto-plus==1.26.1 \
461+
--hash=sha256:13285478c2dcf2abb829db158e1047e2f1e8d63a077d94263c2b88b043c75a66 \
462+
--hash=sha256:21a515a4c4c0088a773899e23c7bbade3d18f9c66c73edd4c7ee3816bc96a012
463463
# via google-api-core
464464
protobuf==5.29.3 \
465465
--hash=sha256:0a18ed4a24198528f2333802eb075e59dea9d679ab7a6c5efb017a59004d849f \

Debian/15/bookworm/.versions.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"BARMAN_VERSION": "3.12.1",
3-
"IMAGE_RELEASE_VERSION": "4",
3+
"IMAGE_RELEASE_VERSION": "5",
44
"POSTGRES_IMAGE_LAST_UPDATED": "2025-03-01T03:12:47.697418Z",
55
"POSTGRES_IMAGE_VERSION": "15.12-bookworm"
66
}

Debian/15/bookworm/Dockerfile

+4-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ FROM postgres:15.12-bookworm
2020
LABEL name="PostgreSQL Container Images" \
2121
vendor="The CloudNativePG Contributors" \
2222
version="${PG_VERSION}" \
23-
release="4" \
23+
release="5" \
2424
summary="PostgreSQL Container images." \
2525
description="This Docker image contains PostgreSQL and Barman Cloud based on Postgres 15.12-bookworm."
2626

@@ -43,13 +43,16 @@ RUN set -xe; \
4343
RUN set -xe; \
4444
apt-get update; \
4545
apt-get install -y --no-install-recommends \
46+
# We require build-essential and python3-dev to build lz4 on arm64 since there isn't a pre-compiled wheel available
47+
build-essential python3-dev \
4648
python3-pip \
4749
python3-psycopg2 \
4850
python3-setuptools \
4951
; \
5052
pip3 install --break-system-packages --upgrade pip; \
5153
# TODO: Remove --no-deps once https://github.com/pypa/pip/issues/9644 is solved
5254
pip3 install --break-system-packages --no-deps -r requirements.txt; \
55+
apt-get remove -y --purge --autoremove build-essential python3-dev; \
5356
rm -rf /var/lib/apt/lists/*;
5457

5558
# Change the uid of postgres to 26

Debian/15/bookworm/requirements.txt

+9-9
Original file line numberDiff line numberDiff line change
@@ -338,9 +338,9 @@ cryptography==44.0.2 \
338338
# azure-storage-blob
339339
# msal
340340
# pyjwt
341-
google-api-core==2.24.1 \
342-
--hash=sha256:bc78d608f5a5bf853b80bd70a795f703294de656c096c0968320830a4bc280f1 \
343-
--hash=sha256:f8b36f5456ab0dd99a1b693a40a31d1e7757beea380ad1b38faaf8941eae9d8a
341+
google-api-core==2.24.2 \
342+
--hash=sha256:810a63ac95f3c441b7c0e43d344e372887f62ce9071ba972eacf32672e072de9 \
343+
--hash=sha256:81718493daf06d96d6bc76a91c23874dbf2fac0adbbf542831b805ee6e974696
344344
# via
345345
# google-cloud-core
346346
# google-cloud-storage
@@ -351,9 +351,9 @@ google-auth==2.38.0 \
351351
# google-api-core
352352
# google-cloud-core
353353
# google-cloud-storage
354-
google-cloud-core==2.4.2 \
355-
--hash=sha256:7459c3e83de7cb8b9ecfec9babc910efb4314030c56dd798eaad12c426f7d180 \
356-
--hash=sha256:a4fcb0e2fcfd4bfe963837fad6d10943754fd79c1a50097d68540b6eb3d67f35
354+
google-cloud-core==2.4.3 \
355+
--hash=sha256:1fab62d7102844b278fe6dead3af32408b1df3eb06f5c7e8634cbd40edc4da53 \
356+
--hash=sha256:5130f9f4c14b4fafdff75c79448f9495cfade0d8775facf1b09c3bf67e027f6e
357357
# via google-cloud-storage
358358
google-cloud-storage==3.1.0 \
359359
--hash=sha256:944273179897c7c8a07ee15f2e6466a02da0c7c4b9ecceac2a26017cb2972049 \
@@ -457,9 +457,9 @@ portalocker==2.10.1 \
457457
--hash=sha256:53a5984ebc86a025552264b459b46a2086e269b21823cb572f8f28ee759e45bf \
458458
--hash=sha256:ef1bf844e878ab08aee7e40184156e1151f228f103aa5c6bd0724cc330960f8f
459459
# via msal-extensions
460-
proto-plus==1.26.0 \
461-
--hash=sha256:6e93d5f5ca267b54300880fff156b6a3386b3fa3f43b1da62e680fc0c586ef22 \
462-
--hash=sha256:bf2dfaa3da281fc3187d12d224c707cb57214fb2c22ba854eb0c105a3fb2d4d7
460+
proto-plus==1.26.1 \
461+
--hash=sha256:13285478c2dcf2abb829db158e1047e2f1e8d63a077d94263c2b88b043c75a66 \
462+
--hash=sha256:21a515a4c4c0088a773899e23c7bbade3d18f9c66c73edd4c7ee3816bc96a012
463463
# via google-api-core
464464
protobuf==5.29.3 \
465465
--hash=sha256:0a18ed4a24198528f2333802eb075e59dea9d679ab7a6c5efb017a59004d849f \

Debian/15/bullseye/.versions.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"BARMAN_VERSION": "3.12.1",
3-
"IMAGE_RELEASE_VERSION": "4",
3+
"IMAGE_RELEASE_VERSION": "5",
44
"POSTGRES_IMAGE_LAST_UPDATED": "2025-03-01T00:11:58.706755Z",
55
"POSTGRES_IMAGE_VERSION": "15.12-bullseye"
66
}

Debian/15/bullseye/Dockerfile

+4-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ FROM postgres:15.12-bullseye
2020
LABEL name="PostgreSQL Container Images" \
2121
vendor="The CloudNativePG Contributors" \
2222
version="${PG_VERSION}" \
23-
release="4" \
23+
release="5" \
2424
summary="PostgreSQL Container images." \
2525
description="This Docker image contains PostgreSQL and Barman Cloud based on Postgres 15.12-bullseye."
2626

@@ -43,13 +43,16 @@ RUN set -xe; \
4343
RUN set -xe; \
4444
apt-get update; \
4545
apt-get install -y --no-install-recommends \
46+
# We require build-essential and python3-dev to build lz4 on arm64 since there isn't a pre-compiled wheel available
47+
build-essential python3-dev \
4648
python3-pip \
4749
python3-psycopg2 \
4850
python3-setuptools \
4951
; \
5052
pip3 install --upgrade pip; \
5153
# TODO: Remove --no-deps once https://github.com/pypa/pip/issues/9644 is solved
5254
pip3 install --no-deps -r requirements.txt; \
55+
apt-get remove -y --purge --autoremove build-essential python3-dev; \
5356
rm -rf /var/lib/apt/lists/*;
5457

5558
# Change the uid of postgres to 26

0 commit comments

Comments
 (0)