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 70a52c9385)

Co-authored-by: Oliver <oliver.henry.walters@gmail.com>
This commit is contained in:
github-actions[bot] 2024-08-14 21:28:07 +10:00 committed by GitHub
parent 5c0368440f
commit 5b1e15ed30
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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