26 Sep 2019
java工程运行某些情况需要微软的truetype字体支持,例如某些验证码的显示
# debian作为底层镜像时
RUN apt-get update; \
apt-get install ttf-mscorefonts-installer
# alpine作为底层镜像时
RUN apk --no-cache add msttcorefonts-installer fontconfig && \
update-ms-fonts && \
fc-cache -f