2016-03-26 14:54:39 +00:00
|
|
|
FROM jupyter/minimal-notebook
|
2020-03-22 12:52:45 +01:00
|
|
|
MAINTAINER Xaver Klemenschits <klemenschits@iue.tuwien.ac.at>
|
2016-03-26 14:54:39 +00:00
|
|
|
|
|
|
|
USER root
|
|
|
|
|
2020-03-27 12:27:14 +01:00
|
|
|
# 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/
|
|
|
|
|
2020-03-22 12:52:45 +01:00
|
|
|
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
|