view Dockerfile @ 60:ff9eb1c21ea8

Remove easy install script as installation method changed
author Brendan Rius <brendan.rius@gmail.com>
date Thu, 10 Aug 2017 17:05:45 +0200
parents 8a8a9952c887
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