From 1362bb1a60582718d70b8531751083ff6fa1d498 Mon Sep 17 00:00:00 2001 From: Romit Mohane <69901221+Reckadon@users.noreply.github.com> Date: Wed, 25 Dec 2024 02:36:12 +0530 Subject: [PATCH] added notosans fonts install command to dockerfile --- docker/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker/Dockerfile b/docker/Dockerfile index 83696e335a..2341595d3e 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -14,6 +14,10 @@ RUN apt-get update -qq \ wget \ ghostscript +# adding fonts +RUN apt-get install --no-install-recommends -y fonts-noto +RUN fc-cache -fv + # setup a minimal texlive installation COPY docker/texlive-profile.txt /tmp/ ENV PATH=/usr/local/texlive/bin/armhf-linux:/usr/local/texlive/bin/aarch64-linux:/usr/local/texlive/bin/x86_64-linux:$PATH