diff --git a/TeXLive b/TeXLive new file mode 100644 index 0000000000000000000000000000000000000000..b6511170d04792fac587d3163f23eb87b512d385 --- /dev/null +++ b/TeXLive @@ -0,0 +1,28 @@ +FROM debian:sid + +ENV LANG=C.UTF-8 \ + LC_ALL=C.UTF-8 +ARG BUILD_DATE + +LABEL org.label-schema.build-date=$BUILD_DATE \ + maintainer="Tamas Gal <tgal@km3net.de>" + + +RUN apt-get update \ + && apt-get install -y gnupg wget curl git libgetopt-long-descriptive-perl \ + libdigest-perl-md5-perl python-pygments fontconfig && rm -rf /var/lib/apt/lists/* + +WORKDIR / +RUN curl -sL ftp://tug.org/historic/systems/texlive/2017/tlnet-final/install-tl-unx.tar.gz | tar zxf - \ + && mv install-tl-20* install-tl \ + && cd install-tl \ + && echo "selected_scheme scheme-full" > profile \ + && ./install-tl -repository ftp://tug.org/historic/systems/texlive/2017/tlnet-final -profile profile \ + && cd .. \ + && rm -rf install-tl + + +ENV PATH /usr/local/texlive/2017/bin/x86_64-linux:$PATH +WORKDIR /home + +CMD ["tlmgr", "--version"]