Skip to content

Commit

Permalink
add back proper CJK font support (#1469) (#1470)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkrah authored Apr 2, 2023
1 parent 1ca3192 commit 00799fd
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,20 @@ ARG DEBIAN_FRONTEND=noninteractive
ENV BACKSTOPJS_VERSION=$BACKSTOPJS_VERSION

# install chromium and its deps
RUN apt-get -qq update >/dev/null && apt-get install -qq fonts-liberation chromium >/dev/null
RUN apt-get -qq update >/dev/null && apt-get install -qq \
fonts-liberation \
# cyrillic
xfonts-cyrillic \
# chinese
xfonts-wqy fonts-wqy-zenhei fonts-arphic-ukai fonts-arphic-uming \
# japanese
fonts-ipafont-mincho fonts-ipafont-gothic fonts-ipafont fonts-vlgothic \
# korean
fonts-unfonts-core fonts-unfonts-extra \
# cjk + emoji font
fonts-noto-cjk fonts-noto-color-emoji \
# chromium
chromium >/dev/null

USER root
# skip download, we already have it installed
Expand Down

0 comments on commit 00799fd

Please sign in to comment.