Skip to content
Snippets Groups Projects
Commit 649140a9 authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Add TeXLive

parent d6b1f2b8
No related branches found
No related tags found
No related merge requests found
TeXLive 0 → 100644
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"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment