diff --git a/Dockerfile b/Dockerfile index 155519c..41f34a0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,6 +21,13 @@ RUN apk add --no-cache \ zip \ && rm -rf /var/cache/apk/* +COPY fonts/Figtree,IBM_Plex_Mono,IBM_Plex_Sans.zip /tmp +RUN mkdir -p /tmp/fonts \ + && mkdir -p /usr/local/share/fonts \ + && unzip /tmp/Figtree,IBM_Plex_Mono,IBM_Plex_Sans.zip -d /tmp/fonts \ + && find /tmp/fonts -name '*.ttf' -exec cp {} /usr/local/share/fonts \; \ + && fc-cache -fv + RUN tlmgr update --self \ && tlmgr install \ catchfile \ diff --git a/fonts/Figtree,IBM_Plex_Mono,IBM_Plex_Sans.zip b/fonts/Figtree,IBM_Plex_Mono,IBM_Plex_Sans.zip new file mode 100644 index 0000000..c47bd0e Binary files /dev/null and b/fonts/Figtree,IBM_Plex_Mono,IBM_Plex_Sans.zip differ