mirror of
https://github.com/XaverKlemenschits/jupyter-c-kernel.git
synced 2025-04-17 03:46:11 +00:00
16 lines
274 B
Docker
16 lines
274 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 -e jupyter_c_kernel/
|
|
RUN cd jupyter_c_kernel && install_c_kernel --user
|
|
|
|
WORKDIR /home/$NB_USER/
|
|
|
|
USER $NB_USER
|