-
-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7bb6161
commit 1f032e5
Showing
3 changed files
with
3,128 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
Oops, something went wrong.