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