jupyter-c-kernel/Dockerfile

16 lines
274 B
Docker
Raw Normal View History

2016-03-26 14:54:39 +00:00
FROM jupyter/minimal-notebook
MAINTAINER Brendan Rius <ping@brendan-rius.com>
USER root
2017-08-10 17:00:32 +02:00
WORKDIR /tmp
2016-06-08 11:24:21 +01:00
COPY ./ jupyter_c_kernel/
2017-08-10 17:00:32 +02:00
RUN pip install --no-cache-dir -e jupyter_c_kernel/
2017-08-10 17:13:34 +02:00
RUN cd jupyter_c_kernel && install_c_kernel --user
2016-06-08 11:24:21 +01:00
WORKDIR /home/$NB_USER/
2017-08-10 17:00:32 +02:00
USER $NB_USER