We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3fc39a commit 7622ec1Copy full SHA for 7622ec1
Dockerfile
@@ -8,6 +8,13 @@ USER sage
8
ENV HOME /home/sage
9
COPY --chown=sage:sage . ${HOME}/sage-combinat-widgets
10
WORKDIR ${HOME}/sage-combinat-widgets
11
+RUN sage -pip install --upgrade ipywidgets
12
RUN sage -pip install jupyterlab
-RUN cd ./js && npm run build:labextension && cd ..
13
+RUN cd ./js \
14
+ && npm install \
15
+ && npm run build:labextension \
16
+ && cd ..
17
RUN sage -pip install .
18
+RUN jupyter labextension install --no-build @jupyter-widgets/jupyterlab-manager \
19
+ && sage -n jupyterlab build \
20
+ && sage -n jupyterlab clean
0 commit comments