Skip to content

Commit 8aaf4c8

Browse files
authored
fix: ignore errors only in localedef (#53)
1 parent 9af5a81 commit 8aaf4c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ RUN ALPINE_GLIBC_BASE_URL="https://github.com/sgerrand/alpine-pkg-glibc/releases
3030
"$ALPINE_GLIBC_I18N_PACKAGE_FILENAME" && \
3131
\
3232
rm "/etc/apk/keys/sgerrand.rsa.pub" && \
33-
/usr/glibc-compat/bin/localedef --force --inputfile POSIX --charmap UTF-8 "$LANG" || true && \
33+
(/usr/glibc-compat/bin/localedef --force --inputfile POSIX --charmap UTF-8 "$LANG" || true) && \
3434
echo "export LANG=$LANG" > /etc/profile.d/locale.sh && \
3535
\
3636
apk del glibc-i18n && \

0 commit comments

Comments
 (0)