docker中文乱码解决方案

RUN locale

RUN localedef -i zh_CN -c -f UTF-8 zh_CN.UTF-8

RUN echo "export LC_ALL=zh_CN.UTF-8" >> /etc/profile && source /etc/profile

ENV LANG zh_CN.UTF-8

ENV LC_CTYPE zh_CN.UTF-8

你可能感兴趣的:(docker中文乱码解决方案)