blob: e68f98084205155aead255b419f37e8e2c1ab6f1 (
plain) (
blame)
1
2
3
4
5
6
7
8
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
|