-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
50 lines (49 loc) · 1.55 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
FROM ubuntu:16.04 AS texlive_2018
MAINTAINER burkh4rt
RUN apt-get update \
&& apt-get install -y wget \
perl \
make \
fontconfig \
&& echo "selected_scheme scheme-minimal" >> texlive.profile \
&& wget ftp://tug.org/historic/systems/texlive/2018/install-tl-unx.tar.gz \
&& tar zxvf install-tl-unx.tar.gz \
&& ./install-tl-*/install-tl -repository ftp://tug.org/historic/systems/texlive/2018/tlnet-final -profile texlive.profile \
&& rm -rf install-tl-* \
&& rm texlive.profile
ENV PATH="/usr/local/texlive/2018/bin/x86_64-linux:${PATH}"
RUN tlmgr install scheme-small \
collection-bibtexextra \
latexmk \
&& tlmgr backup --clean --all \
&& fmtutil-sys --all
WORKDIR /data
VOLUME /data
FROM texlive_2018
RUN tlmgr install bbm \
doublestroke \
was \
csquotes \
hyperxmp \
newtx \
imakeidx \
tabu \
epigraph \
babel-russian \
babel-japanese \
tikz-cd \
ifmtarg \
varwidth \
txfonts \
cm-super \
ec \
boondox \
babel-greek \
greek-fontenc \
cm-lgc \
hyphen-greek \
libgreek \
cbfonts \
&& tlmgr backup --clean --all \
&& fmtutil-sys --all \
&& apt-get clean