-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDockerfile.old
41 lines (28 loc) · 1.05 KB
/
Dockerfile.old
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
# *****************************************************************************
# Installs https://github.com/nilqed/fricas_jupyter
# Build ..: docker build -t nilqed/fricas_jupyter .
# Test ...: docker run -t -i nilqed/fricas_jupyter /bin/bash
# Run ....: docker run -p 443:8888 -t -i nilqed/fricas_jupyter \
# jupyter notebook --ip=*
# *****************************************************************************
# $Id: Dockerfile 1 2015-10-23 02:52:02Z pagani $
# *****************************************************************************
FROM nilqed/fricas
MAINTAINER Kurt Pagani <[email protected]>
# =====
# iSPAD
# =====
RUN cd /root && \
git clone https://github.com/nilqed/fricas_jupyter.git && \
cd ./fricas_jupyter && \
./install.sh
# =======
# MathJax
# =======
RUN cd /usr/local/lib/python3.4/dist-packages/notebook/static/components && \
rm -r MathJax && \
git clone git://github.com/mathjax/MathJax.git MathJax
# =====================
# CodeMirror mode/lexer
# =====================
RUN cd /root/tmp