FROM openjdk:8u332-oraclelinux7 #RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories #RUN apk add --update font-adobe-100dpi ttf-dejavu fontconfig #在线安装字体 #RUN yum -y install wget #RUN wget -O /usr/share/fonts/simsun.ttf https://pfh-file-store.oss-cn-hangzhou.aliyuncs.com/simsun.ttf #RUN fc-cache -vf #RUN fc-list #离线安装字体,先把离线字体文件加入dockerfile目录 COPY front/simsun.ttf /usr/share/fonts/simsun.ttf #RUN mkfontscale #RUN mkfontdir RUN fc-cache -vf RUN fc-list
标签:simsun,RUN,离线,中文字体,fc,字体,Linux,DockerFile,ttf From: https://www.cnblogs.com/colder/p/17108471.html