Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Installing MathJax #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 6 additions & 1 deletion Dockerfile
Expand Up @@ -52,11 +52,16 @@ ADD caffe-ld-so.conf /etc/ld.so.conf.d/
# Run ldconfig again (not sure if needed)
RUN ldconfig

# installing MathJax
RUN wget https://github.com/mathjax/MathJax/archive/v2.5-latest.zip -O /mathjax.zip
RUN python -m IPython.external.mathjax /mathjax.zip


# Copy the notebook into the container
ADD dream.ipynb /notebooks/

ADD notebook.sh /

RUN chmod u+x /notebook.sh

CMD ["/notebook.sh"]
CMD ["/notebook.sh"]