站点图标 星露谷值班站长

debian系统容器镜像添加中文显示文件名称

ENV LANG=zh_CN.UTF-8
ENV LC_ALL=zh_CN.UTF-8
COPY /Font/* /usr/share/fonts/truetype/
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \
    echo $TZ > /etc/timezone && \
    mkdir -p /usr/share/ && \
    apt update && \
    apt install fontconfig libfreetype6 locales -y && \
    fc-cache -fv && \
    echo "zh_CN.UTF-8 UTF-8" >> /etc/locale.gen && \
    locale-gen zh_CN.UTF-8
退出移动版