From 649140a9aa6c8052b97ce1fbb7bd375377a55e5e Mon Sep 17 00:00:00 2001 From: Tamas Gal <tgal@km3net.de> Date: Thu, 8 Nov 2018 20:06:13 +0100 Subject: [PATCH] Add TeXLive --- TeXLive | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 TeXLive diff --git a/TeXLive b/TeXLive new file mode 100644 index 0000000..b651117 --- /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"] -- GitLab