We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f98168 commit f3d7259Copy full SHA for f3d7259
Dockerfile
@@ -8,5 +8,6 @@ ENV HOME /home/${NB_USER}
8
# Make sure the contents of our repo are in ${HOME}
9
COPY . ${HOME}
10
USER root
11
+COPY jupyter /usr/bin/
12
RUN chown -R ${NB_USER}:${NB_USER} ${HOME}
13
USER ${NB_USER}
jupyter
@@ -0,0 +1,4 @@
1
+#!/bin/sh
2
+
3
+shift # gobbles up the notebook argument
4
+exec /usr/bin/sage -notebook jupyter "$@"
0 commit comments