mirror of
https://github.com/XaverKlemenschits/jupyter-c-kernel.git
synced 2025-04-18 20:36:10 +00:00
9 lines
278 B
Docker
9 lines
278 B
Docker
FROM jupyter/minimal-notebook
|
|
MAINTAINER Brendan Rius <ping@brendan-rius.com>
|
|
|
|
USER root
|
|
|
|
COPY ./ /home/$NB_USER/.jupyter/jupyter_c_kernel/
|
|
RUN pip install /home/$NB_USER/.jupyter/jupyter_c_kernel/
|
|
RUN jupyter-kernelspec install /home/$NB_USER/.jupyter/jupyter_c_kernel/c_spec/
|