jupyter-c-kernel/Dockerfile

20 lines
402 B
Docker
Raw Normal View History

2016-03-26 14:54:39 +00:00
FROM jupyter/minimal-notebook
MAINTAINER Xaver Klemenschits <klemenschits@iue.tuwien.ac.at>
2016-03-26 14:54:39 +00:00
USER root
# Install vim and ssh
RUN apt-get update
RUN apt-get install -y vim openssh-client
2017-08-10 17:00:32 +02:00
WORKDIR /tmp
2016-06-08 11:24:21 +01:00
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
2016-06-08 11:24:21 +01:00
WORKDIR /home/$NB_USER/
2017-08-10 17:00:32 +02:00
USER $NB_USER