Mercurial > hg > Members > aka > jupyter_CbC_kernel
annotate Dockerfile @ 69:79199ce31269
Update README.md
committer: GitHub <noreply@github.com>
author | Brendan Rius <brendan.rius@gmail.com> |
---|---|
date | Sun, 13 Aug 2017 16:25:27 +0200 |
parents | f07ad089f063 |
children | 8206b62b7016 |
rev | line source |
---|---|
9 | 1 FROM jupyter/minimal-notebook |
2 MAINTAINER Brendan Rius <ping@brendan-rius.com> | |
3 | |
4 USER root | |
5 | |
58
8a8a9952c887
Change install procedure
Brendan Rius <brendan.rius@gmail.com>
parents:
45
diff
changeset
|
6 WORKDIR /tmp |
45 | 7 |
8 COPY ./ jupyter_c_kernel/ | |
9 | |
58
8a8a9952c887
Change install procedure
Brendan Rius <brendan.rius@gmail.com>
parents:
45
diff
changeset
|
10 RUN pip install --no-cache-dir -e jupyter_c_kernel/ |
61 | 11 RUN cd jupyter_c_kernel && install_c_kernel --user |
45 | 12 |
13 WORKDIR /home/$NB_USER/ | |
58
8a8a9952c887
Change install procedure
Brendan Rius <brendan.rius@gmail.com>
parents:
45
diff
changeset
|
14 |
8a8a9952c887
Change install procedure
Brendan Rius <brendan.rius@gmail.com>
parents:
45
diff
changeset
|
15 USER $NB_USER |