Skip to content

Commit

Permalink
feat(docker): Add support for CJK fonts + Replace ms-fonts with opens…
Browse files Browse the repository at this point in the history
…ans. (#242)
  • Loading branch information
gabriel-tessier authored Jul 27, 2020
1 parent 804c0ad commit 17e4e73
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions docker/dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,17 @@ FROM python:rc-alpine3.12

# install system dependencies.
RUN apk update && apk add --no-cache \
gcc libc-dev g++ graphviz git bash go imagemagick inkscape
gcc libc-dev g++ graphviz git bash go imagemagick inkscape ttf-opensans curl fontconfig

# install go package.
RUN go get github.com/mingrammer/round

# install fonts
RUN apk --no-cache add msttcorefonts-installer fontconfig && \
update-ms-fonts && \
fc-cache -f
RUN curl -O https://noto-website.storage.googleapis.com/pkgs/NotoSansCJKjp-hinted.zip \
&& mkdir -p /usr/share/fonts/NotoSansCJKjp \
&& unzip NotoSansCJKjp-hinted.zip -d /usr/share/fonts/NotoSansCJKjp/ \
&& rm NotoSansCJKjp-hinted.zip \
&& fc-cache -fv

# add go bin to path.
ENV PATH "$PATH:/root/go/bin"
Expand Down

0 comments on commit 17e4e73

Please sign in to comment.