使用TexLive 2017和latexml构建docker图像

时间:2017-08-03 08:10:14

标签: git perl docker latex latexml

我正在尝试使用完整的TexLive 2017和latexml制作一个docker图像,用于将latex编译为pdf并将latex转换为html。 我相信这对乳胶社区来说是一个有用的工具。 这是我的dockerfile:

FROM debian:testing
MAINTAINER Dr Suman Khanal <suman81765@gmail.com>
LABEL updated_at '2017-07-26'
RUN apt-get update \
  && apt-get install -y gnupg git wget curl libgetopt-long-descriptive-perl libdigest-perl-md5-perl python python-pygments
WORKDIR /usr/local/src
RUN curl -sL http://mirror.utexas.edu/ctan/systems/texlive/tlnet/install-tl-unx.tar.gz | tar zxf - && mv install-tl-20* install-tl

WORKDIR install-tl
RUN echo "selected_scheme scheme-full" > profile \
  && ./install-tl -repository http://mirror.utexas.edu/ctan/systems/texlive/tlnet -profile profile
WORKDIR /
ENV PATH /usr/local/texlive/2017/bin/x86_64-linux:$PATH
RUN apt-get install -y libarchive-zip-perl \
  libfile-which-perl libimage-size-perl  \
  libio-string-perl libjson-xs-perl libtext-unidecode-perl \
  libparse-recdescent-perl liburi-perl libuuid-tiny-perl libwww-perl \
  libxml2 libxml-libxml-perl libxslt1.1 libxml-libxslt-perl  \
  imagemagick libimage-magick-perl 
RUN git clone https://github.com/brucemiller/LaTeXML.git && cd LaTeXML && perl Makefile.PL && make && make install 
CMD ["tlmgr", "--version"]

但它抛出了这个错误Build failed: The command '/bin/sh -c git clone https://github.com/brucemiller/LaTeXML.git && cd LaTeXML && perl Makefile.PL && make && make install' returned a non-zero code: 127而没有建立。 我犯错的任何帮助?

非常感谢,

苏曼

1 个答案:

答案 0 :(得分:2)

您错过了make可执行文件(apt-get install make),因此构建过程在perl Makefile.PL

之后崩溃