Skip to content
Snippets Groups Projects
Forked from an inaccessible project.
texlive:2017 819 B
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
RUN apt-get install -y gnupg wget curl git make 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"]