Delete Dockerfile

This commit is contained in:
Lukas Heiligenbrunner 2020-04-20 18:03:49 +00:00
parent c6c22256f0
commit 6f91b03c59

View File

@ -1,43 +0,0 @@
FROM ubuntu:rolling
MAINTAINER luki42
ENV PATH=/usr/local/texlive/bin/x86_64-linux:$PATH
COPY ./texlive-profile.txt /tmp/
COPY ./debian-equivs.txt /tmp/
# set up packages
RUN apt-get update -qq &&\
apt-get install --no-install-recommends -y \
equivs \
wget \
perl \
libfontconfig1 \
&& \
\
# Install texlive
wget -O /tmp/install-tl-unx.tar.gz http://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz && \
mkdir /tmp/install-tl && \
tar -xzf /tmp/install-tl-unx.tar.gz -C /tmp/install-tl --strip-components=1 && \
/tmp/install-tl/install-tl --profile=/tmp/texlive-profile.txt && \
\
# Install equivalent packages
cd /tmp && \
equivs-control texlive-local && \
equivs-build debian-equivs.txt && \
dpkg -i texlive-local*.deb && \
apt-get install -f && \
\
# Clean up
apt-get autoclean && \
apt-get autoremove && \
rm -rf /var/lib/apt/lists/* \
/tmp/* \
/var/tmp/* && \
tlmgr update --self && \
tlmgr install scheme-full
# Expose /home as workin dir
WORKDIR /home
VOLUME ["/home"]