CI: Add inkscape to docker image

This commit is contained in:
TEC 2021-03-20 03:10:56 +08:00
parent e1295272e8
commit 1ff002d92f
Signed by: tec
GPG Key ID: 779591AFDB81F06C
1 changed files with 2 additions and 2 deletions

View File

@ -34,9 +34,9 @@ RUN echo "\033[1;34mUpdate.\033[0m" &&\
# Emacs 27.1 (nox)
apt-get install -y emacs27-nox &&\
echo "\033[1;34mInstalling TeX Live packages.\033[0m" &&\
# install TeX Live and ghostscript as well as other tools
# install TeX Live and ghostscript as well as other tools (inkscape for svg)
git clone https://github.com/tecosaur/BMC.git /usr/share/texmf/tex/latex/bmc &&\
apt-get install -y texlive-base texlive-latex-recommended texlive-fonts-extra latexmk &&\
apt-get install -y texlive-base texlive-latex-recommended texlive-fonts-extra latexmk inkscape &&\
# delete Tex Live sources and other potentially useless stuff
echo "\033[1;34mDelete TeX Live sources and other useless stuff.\033[0m" &&\
(rm -rf /usr/share/texmf/source || true) &&\