jupyter-c-kernel/Dockerfile
Xaver K bddb7ca6b0
Static server (#2)
* 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.
2020-03-27 12:27:14 +01:00

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