diff options
Diffstat (limited to 'texlive')
-rw-r--r-- | texlive/Dockerfile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/texlive/Dockerfile b/texlive/Dockerfile new file mode 100644 index 0000000..e68f980 --- /dev/null +++ b/texlive/Dockerfile @@ -0,0 +1,9 @@ +FROM texlive/texlive:latest +COPY ./feature-init/ /zharf/ +RUN wget https://virastaran.net/wp-content/uploads/2014/01/IRFontPack-virastaran.net_.zip \ + && unzip IRFontPack-virastaran.net_.zip \ + && cd IR \ + && mkdir -p /usr/share/fonts/truetype/IR \ + && cp * /usr/share/fonts/truetype/IR/ \ + && fc-cache -fv +RUN cd /zharf && make |