8000 Skip unavailable nss_wrapper on ppc64le · docker-library/postgres@6ee0f28 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 6ee0f28

Browse files
committed
Skip unavailable nss_wrapper on ppc64le
1 parent ff5f92b commit 6ee0f28

File tree

6 files changed

+18
-6
lines changed

6 files changed

+18
-6
lines changed

11/alpine/Dockerfile

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

12/alpine/Dockerfile

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

13/alpine/Dockerfile

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

14/alpine/Dockerfile

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

15/alpine/Dockerfile

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Dockerfile-alpine.template

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,12 +136,14 @@ RUN set -eux; \
136136
apk add --no-cache --virtual .postgresql-rundeps \
137137
$runDeps \
138138
bash \
139-
nss_wrapper \
140139
su-exec \
141140
tzdata \
142141
zstd \
143142
# https://wiki.alpinelinux.org/wiki/Release_Notes_for_Alpine_3.16.0#ICU_data_split
144143
icu-data-full \
144+
# nss_wrapper is not availble on ppc64le: "test case segfaults in ppc64le"
145+
# https://git.alpinelinux.org/aports/commit/testing/nss_wrapper/APKBUILD?h=3.17-stable&id=94d81ceeb58cff448d489bbcbe9a6d40c9991663
146+
$([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') \
145147
; \
146148
apk del --no-network .build-deps; \
147149
cd /; \

0 commit comments

Comments
 (0)
0