Skip to content

Commit

Permalink
Add fonts to support more different types of characters for multiple …
Browse files Browse the repository at this point in the history
…languages (#29861) (#30091)

This PR fixes #29495 by adding more fonts to support multiple different characters from multiple languages.

After upgrading the base image, even though all characters from a few languages worked fine, not all characters from all languages were being displayed.

(cherry picked from commit 457b0bb)

Co-authored-by: Lucas F. da Costa <[email protected]>
  • Loading branch information
mergify[bot] and lucasfcosta authored Jan 28, 2022
1 parent 3c131c7 commit ac3bddd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Only add monitor.status to browser events when summary. {pull}29460[29460]
- Also add summary to journeys for which the synthetics runner crashes. {pull}29606[29606]
- Update size of ICMP packets to adhere to standard min size. {pull}29948[29948]
- Add fonts to support more different types of characters for multiple languages. {pull}29606[29861]

*Metricbeat*

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ RUN apt-get update -y && \
libcairo2\
libasound2\
libatspi2.0-0\
libxshmfence1 && \
libxshmfence1 \
fonts-noto-core\
fonts-noto-cjk &&\
apt-get clean all && \
exit_code=0 && break || exit_code=$? && echo "apt-get error: retry $iter in 10s" && sleep 10; \
done; \
Expand Down
4 changes: 3 additions & 1 deletion dev-tools/packaging/templates/docker/Dockerfile.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ RUN apt-get update -y && \
libcairo2\
libasound2\
libatspi2.0-0\
libxshmfence1 && \
libxshmfence1 \
fonts-noto \
fonts-noto-cjk && \
apt-get clean all && \
exit_code=0 && break || exit_code=$? && echo "apt-get error: retry $iter in 10s" && sleep 10; \
done; \
Expand Down

0 comments on commit ac3bddd

Please sign in to comment.