Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update postgres #12576

Merged
merged 1 commit into from
Jun 6, 2022
Merged

Conversation

tianon
Copy link
Member

@tianon tianon commented Jun 3, 2022

Changes:

Changes:

- docker-library/postgres@ba4abaa: Merge pull request docker-library/postgres#966 from infosiftr/icu-data-full
- docker-library/postgres@899a216: Add "icu-data-full" to all Alpine images
@github-actions
Copy link

github-actions bot commented Jun 3, 2022

Diff for 8795269:
diff --git a/_bashbrew-cat b/_bashbrew-cat
index 839ce59..36c526b 100644
--- a/_bashbrew-cat
+++ b/_bashbrew-cat
@@ -8,7 +8,7 @@ Directory: 10/stretch
 
 Tags: 10.21-alpine, 10-alpine, 10.21-alpine3.16, 10-alpine3.16
 Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1ae967e6437ff5bedd1d977a06b78a9b9fc13df8
+GitCommit: 899a216e56e49ca7ab1aaae937f1220caace7ce4
 Directory: 10/alpine
 
 Tags: 10.21-bullseye, 10-bullseye
@@ -23,7 +23,7 @@ Directory: 11/stretch
 
 Tags: 11.16-alpine, 11-alpine, 11.16-alpine3.16, 11-alpine3.16
 Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1ae967e6437ff5bedd1d977a06b78a9b9fc13df8
+GitCommit: 899a216e56e49ca7ab1aaae937f1220caace7ce4
 Directory: 11/alpine
 
 Tags: 11.16-bullseye, 11-bullseye
@@ -38,7 +38,7 @@ Directory: 12/bullseye
 
 Tags: 12.11-alpine, 12-alpine, 12.11-alpine3.16, 12-alpine3.16
 Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1ae967e6437ff5bedd1d977a06b78a9b9fc13df8
+GitCommit: 899a216e56e49ca7ab1aaae937f1220caace7ce4
 Directory: 12/alpine
 
 Tags: 13.7, 13, 13.7-bullseye, 13-bullseye
@@ -48,7 +48,7 @@ Directory: 13/bullseye
 
 Tags: 13.7-alpine, 13-alpine, 13.7-alpine3.16, 13-alpine3.16
 Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1ae967e6437ff5bedd1d977a06b78a9b9fc13df8
+GitCommit: 899a216e56e49ca7ab1aaae937f1220caace7ce4
 Directory: 13/alpine
 
 Tags: 14.3, 14, latest, 14.3-bullseye, 14-bullseye, bullseye
@@ -58,7 +58,7 @@ Directory: 14/bullseye
 
 Tags: 14.3-alpine, 14-alpine, alpine, 14.3-alpine3.16, 14-alpine3.16, alpine3.16
 Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1ae967e6437ff5bedd1d977a06b78a9b9fc13df8
+GitCommit: 899a216e56e49ca7ab1aaae937f1220caace7ce4
 Directory: 14/alpine
 
 Tags: 15beta1, 15beta1-bullseye
@@ -68,5 +68,5 @@ Directory: 15/bullseye
 
 Tags: 15beta1-alpine, 15beta1-alpine3.16
 Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 1ae967e6437ff5bedd1d977a06b78a9b9fc13df8
+GitCommit: 899a216e56e49ca7ab1aaae937f1220caace7ce4
 Directory: 15/alpine
diff --git a/postgres_10-alpine3.16/Dockerfile b/postgres_10-alpine3.16/Dockerfile
index e19568f..d7f920f 100644
--- a/postgres_10-alpine3.16/Dockerfile
+++ b/postgres_10-alpine3.16/Dockerfile
@@ -125,6 +125,8 @@ RUN set -eux; \
 		su-exec \
 		tzdata \
 		zstd \
+# https://wiki.alpinelinux.org/wiki/Release_Notes_for_Alpine_3.16.0#ICU_data_split
+		icu-data-full \
 	; \
 	apk del --no-network .build-deps; \
 	cd /; \
diff --git a/postgres_11-alpine3.16/Dockerfile b/postgres_11-alpine3.16/Dockerfile
index 1627a28..a925000 100644
--- a/postgres_11-alpine3.16/Dockerfile
+++ b/postgres_11-alpine3.16/Dockerfile
@@ -127,6 +127,8 @@ RUN set -eux; \
 		su-exec \
 		tzdata \
 		zstd \
+# https://wiki.alpinelinux.org/wiki/Release_Notes_for_Alpine_3.16.0#ICU_data_split
+		icu-data-full \
 	; \
 	apk del --no-network .build-deps; \
 	cd /; \
diff --git a/postgres_12-alpine3.16/Dockerfile b/postgres_12-alpine3.16/Dockerfile
index 42fd97c..8ffe4d4 100644
--- a/postgres_12-alpine3.16/Dockerfile
+++ b/postgres_12-alpine3.16/Dockerfile
@@ -127,6 +127,8 @@ RUN set -eux; \
 		su-exec \
 		tzdata \
 		zstd \
+# https://wiki.alpinelinux.org/wiki/Release_Notes_for_Alpine_3.16.0#ICU_data_split
+		icu-data-full \
 	; \
 	apk del --no-network .build-deps; \
 	cd /; \
diff --git a/postgres_13-alpine3.16/Dockerfile b/postgres_13-alpine3.16/Dockerfile
index f64f78a..878770a 100644
--- a/postgres_13-alpine3.16/Dockerfile
+++ b/postgres_13-alpine3.16/Dockerfile
@@ -127,6 +127,8 @@ RUN set -eux; \
 		su-exec \
 		tzdata \
 		zstd \
+# https://wiki.alpinelinux.org/wiki/Release_Notes_for_Alpine_3.16.0#ICU_data_split
+		icu-data-full \
 	; \
 	apk del --no-network .build-deps; \
 	cd /; \
diff --git a/postgres_15beta1-alpine3.16/Dockerfile b/postgres_15beta1-alpine3.16/Dockerfile
index 06b4484..2c66018 100644
--- a/postgres_15beta1-alpine3.16/Dockerfile
+++ b/postgres_15beta1-alpine3.16/Dockerfile
@@ -130,6 +130,8 @@ RUN set -eux; \
 		su-exec \
 		tzdata \
 		zstd \
+# https://wiki.alpinelinux.org/wiki/Release_Notes_for_Alpine_3.16.0#ICU_data_split
+		icu-data-full \
 	; \
 	apk del --no-network .build-deps; \
 	cd /; \
diff --git a/postgres_alpine3.16/Dockerfile b/postgres_alpine3.16/Dockerfile
index 72e77fc..addd918 100644
--- a/postgres_alpine3.16/Dockerfile
+++ b/postgres_alpine3.16/Dockerfile
@@ -130,6 +130,8 @@ RUN set -eux; \
 		su-exec \
 		tzdata \
 		zstd \
+# https://wiki.alpinelinux.org/wiki/Release_Notes_for_Alpine_3.16.0#ICU_data_split
+		icu-data-full \
 	; \
 	apk del --no-network .build-deps; \
 	cd /; \

Relevant Maintainers:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants