mirror of
https://github.com/XaverKlemenschits/jupyter-c-kernel.git
synced 2025-04-16 03:16:22 +00:00

* Added stdin input via the notebook frontend * Added support for single line code snippets. * Updated README. * Updated Dockerfile. * Changed file cleanup to happen right after execution, rather than before kernel shutdown.
16 lines
318 B
Docker
16 lines
318 B
Docker
FROM jupyter/minimal-notebook
|
|
MAINTAINER Xaver Klemenschits <klemenschits@iue.tuwien.ac.at>
|
|
|
|
USER root
|
|
|
|
WORKDIR /tmp
|
|
|
|
COPY ./ jupyter_c_kernel/
|
|
|
|
RUN pip install --no-cache-dir -e jupyter_c_kernel/ > piplog.txt
|
|
RUN cd jupyter_c_kernel && install_c_kernel --user > installlog.txt
|
|
|
|
WORKDIR /home/$NB_USER/
|
|
|
|
USER $NB_USER
|