-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
Dockerfile.legacy
42 lines (34 loc) · 927 Bytes
/
Dockerfile.legacy
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
# Latex-Online container
#
# VERSION 1
# use the ubuntu base image provided by dotCloud
FROM node:8.9.1-stretch
MAINTAINER Andrey Lushnikov [email protected]
# Sorted list of used packages.
RUN apt-get clean && apt-get update && apt-get install -y \
biber \
cm-super \
fontconfig \
git-core \
latex-xcolor \
preview-latex-style \
python3 \
texlive-bibtex-extra \
texlive-fonts-extra \
texlive-generic-extra \
texlive-lang-all \
texlive-latex-base \
texlive-latex-extra \
texlive-math-extra \
texlive-publishers \
texlive-science \
texlive-xetex
RUN apt-get update && \
apt-get install ca-certificates -y && \
update-ca-certificates
# Add xindy-2.2 instead of makeindex.
ADD ./packages/xindy-2.2-rc2-linux.tar.gz /opt
ENV PATH="/opt/xindy-2.2/bin:${PATH}"
COPY ./util/docker-entrypoint.sh /
EXPOSE 2700
CMD ["./docker-entrypoint.sh"]