From efafa7c16439c3d023e06f7c7b21ea6dbc6128b6 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Mon, 11 Mar 2019 16:36:44 +0100 Subject: [PATCH] [WIP] an attempt to get this to work on top of the current docker-stacks jupyter images --- Dockerfile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d1d565d..3f2a9c0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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