问题
解决
安装相关包,地址:https://github.com/sgerrand/alpine-pkg-glibc/tree/2.31-r0
dockerfile 参考如下:
## Alpine 安装 Glibc https://github.com/sgerrand/alpine-pkg-glibcRUN wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pubRUN wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.31-r0/glibc-2.31-r0.apkRUN wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.31-r0/glibc-bin-2.31-r0.apkRUN wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.31-r0/glibc-i18n-2.31-r0.apkRUN apk add glibc-2.31-r0.apkRUN apk add glibc-bin-2.31-r0.apkRUN apk add glibc-i18n-2.31-r0.apk## 编码问题RUN /usr/glibc-compat/bin/localedef -i en_US -f UTF-8 en_US.UTF-8ENV LANG=en_US.UTF-8ENV LANGUAGE=en_US.UTF-8
解决后:

