添加中文字体其实很简单,往容器里COPY一个ttf字体文件就生效了,不需要执行fc-cache。
基于debian 8的tomcat容器,Dockerfile:
COPY msyh.ttf /usr/share/fonts/msyh.ttf
容器启动的时候这个ttf就已经生效了。
1. 到windows 下载微软雅黑字体
字体路径 C:/WINDOWS/Fonts
雅黑:msyh
1、检查字体是否已经安装:
fc-list ----------检查所有已有的字体fc-list :lang=zh -----------只检查中文
实例配置
RUN yum -y install kde-l10n-Chinese net-tools && yum -y reinstall glibc-common && yum clean all && localedef -c -f UTF-8 -i zh_CN zh_CN.utf8ENV LC_ALL "zh_CN.UTF-8"COPY msyh.ttc /usr/share/fonts/msyh.ttc