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

[WIP] update to work on top of the current docker-stacks jupyter images #65

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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
FROM jupyter/base-notebook
#my objective would be to get it to work on top of this one instead,
# but for now let's keep it simple
#FROM jupyter/scipy-notebook:latest

USER root
RUN wget -O - https://deb.nodesource.com/setup_5.x | bash
RUN apt-get install -y nodejs g++ make software-properties-common libzmq3-dev
# need gnupg2 to run node setup
RUN apt-get update && apt-get install -y nodejs g++ make software-properties-common libzmq3-dev gnupg2
# upgraded to latest supported version
RUN wget -O - https://deb.nodesource.com/setup_10.x | bash

# this probably is not helpful, I just gave it a try in the hope it would clear up the issues a little
RUN conda update -n base conda

RUN mkdir -p $HOME/jupyter-nodejs
COPY . $HOME/jupyter-nodejs
Expand Down