From 70a52c938500f41c817bec8052e35e224b7eea16 Mon Sep 17 00:00:00 2001 From: Oliver Date: Wed, 14 Aug 2024 21:16:07 +1000 Subject: [PATCH] Update default fonts for docker image (#7881) * Update default fonts for docker image Ref: https://github.com/inventree/InvenTree/issues/7737 * Remove extra fonts from Dockerfile --- contrib/container/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/contrib/container/Dockerfile b/contrib/container/Dockerfile index bd5adf670f..eee14b92e8 100644 --- a/contrib/container/Dockerfile +++ b/contrib/container/Dockerfile @@ -74,8 +74,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