mirror of
https://github.com/XaverKlemenschits/jupyter-c-kernel.git
synced 2025-04-13 01:46:10 +00:00

* Wrap input and file output functions for a read only static server. * Added -y to docker apt-get in docker file. * wError/wAll as options in Kernel, defaults only to wAll.
20 lines
402 B
Docker
20 lines
402 B
Docker
FROM jupyter/minimal-notebook
|
|
MAINTAINER Xaver Klemenschits <klemenschits@iue.tuwien.ac.at>
|
|
|
|
USER root
|
|
|
|
# Install vim and ssh
|
|
RUN apt-get update
|
|
RUN apt-get install -y vim openssh-client
|
|
|
|
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
|