From 5b1e15ed307a69ce91ef341f82ec7a5d142ce095 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 14 Aug 2024 21:28:07 +1000 Subject: [PATCH] Update default fonts for docker image (#7881) (#7884) * Update default fonts for docker image Ref: https://github.com/inventree/InvenTree/issues/7737 * Remove extra fonts from Dockerfile (cherry picked from commit 70a52c938500f41c817bec8052e35e224b7eea16) Co-authored-by: Oliver --- contrib/container/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/contrib/container/Dockerfile b/contrib/container/Dockerfile index 572a286f5d..81ae2a8278 100644 --- a/contrib/container/Dockerfile +++ b/contrib/container/Dockerfile @@ -68,8 +68,9 @@ RUN apk add --no-cache \ # MySQL / MariaDB client mariadb-client mariadb-connector-c \ && \ - # fonts - apk --update --upgrade --no-cache add fontconfig ttf-freefont font-noto terminus-font && fc-cache -f + # font support + apk --update --upgrade --no-cache add fontconfig ttf-freefont font-terminus font-noto font-noto-cjk font-noto-extra \ + && fc-cache -f EXPOSE 8000