Skip to content

Commit 935c23c

Browse files
lucasfcostamergify-bot
authored andcommitted
Add fonts to support more different types of characters for multiple languages (#29861)
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)
1 parent 93708bd commit 935c23c

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.next.asciidoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
2323
- Only add monitor.status to browser events when summary. {pull}29460[29460]
2424
- Also add summary to journeys for which the synthetics runner crashes. {pull}29606[29606]
2525
- Update size of ICMP packets to adhere to standard min size. {pull}29948[29948]
26+
- Add fonts to support more different types of characters for multiple languages. {pull}29606[29861]
2627

2728
*Metricbeat*
2829

dev-tools/packaging/templates/docker/Dockerfile.elastic-agent.tmpl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ RUN apt-get update -y && \
6363
libcairo2\
6464
libasound2\
6565
libatspi2.0-0\
66-
libxshmfence1 && \
66+
libxshmfence1 \
67+
fonts-noto-core\
68+
fonts-noto-cjk &&\
6769
apt-get clean all && \
6870
exit_code=0 && break || exit_code=$? && echo "apt-get error: retry $iter in 10s" && sleep 10; \
6971
done; \

dev-tools/packaging/templates/docker/Dockerfile.tmpl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ RUN apt-get update -y && \
5959
libcairo2\
6060
libasound2\
6161
libatspi2.0-0\
62-
libxshmfence1 && \
62+
libxshmfence1 \
63+
fonts-noto \
64+
fonts-noto-cjk && \
6365
apt-get clean all && \
6466
exit_code=0 && break || exit_code=$? && echo "apt-get error: retry $iter in 10s" && sleep 10; \
6567
done; \

0 commit comments

Comments
 (0)