view Dockerfile @ 58:8a8a9952c887

Change install procedure
author Brendan Rius <brendan.rius@gmail.com>
date Thu, 10 Aug 2017 17:00:32 +0200
parents e9b123952dff
children f07ad089f063
line wrap: on
line source

FROM jupyter/minimal-notebook
MAINTAINER Brendan Rius <ping@brendan-rius.com>

USER root

WORKDIR /tmp

COPY ./ jupyter_c_kernel/

RUN pip install --no-cache-dir -e jupyter_c_kernel/
RUN cd jupyter_c_kernel && python -m jupyter_c_kernel.install_c_kernel --user

WORKDIR /home/$NB_USER/

USER $NB_USER