jupyter-c-kernel/Dockerfile
2018-01-23 23:04:53 -08:00

16 lines
271 B
Docker

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 jupyter_c_kernel/
RUN cd jupyter_c_kernel && install_c_kernel --user
WORKDIR /home/$NB_USER/
USER $NB_USER