Skip to content

Commit

Permalink
feat: restore original docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
aslushnikov committed May 18, 2020
1 parent 7bb6161 commit 1f032e5
Show file tree
Hide file tree
Showing 3 changed files with 3,128 additions and 0 deletions.
38 changes: 38 additions & 0 deletions Dockerfile.legacy
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# 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

# 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"]

File renamed without changes.
Loading

0 comments on commit 1f032e5

Please sign in to comment.