view Dockerfile @ 80:a6f483d4fc5f

Merge branch 'master' into sdist-info committer: GitHub <noreply@github.com>
author Brendan Rius <brendan.rius@gmail.com>
date Sun, 03 Jun 2018 22:21:38 +0200
parents 8206b62b7016
children 70e6b10d9220
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 jupyter_c_kernel/
RUN cd jupyter_c_kernel && install_c_kernel --user

WORKDIR /home/$NB_USER/

USER $NB_USER