File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -8,12 +8,12 @@ ENV HOME /home/${NB_USER}
8
8
# Make sure the contents of our repo are in ${HOME}
9
9
COPY . ${HOME}
10
10
USER root
11
- COPY jupyter /usr/bin/
11
+ COPY jupyter jupyter-notebook /usr/bin/
12
12
RUN chown -R ${NB_USER}:${NB_USER} ${HOME}
13
13
USER ${NB_USER}
14
14
15
15
# Upgrade to jupyter 5.* as required by mybinder
16
- RUN sage -pip install --upgrade notebook
16
+ RUN sage -pip install " notebook>=5" "ipykernel>=4.6"
17
17
18
18
# Install additional kernels
19
19
RUN sage -i gap_jupyter
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
- exec /usr/bin/sage -sh jupyter " $@ "
2
+ shift
3
+ exec /usr/bin/sage -notebook jupyter " $@ "
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+ exec /usr/bin/sage -notebook jupyter " $@ "
You can’t perform that action at this time.
0 commit comments