我正在尝试通过docker启动一个带有自定义扩展名(extensionTest)的jupyterlab。但是,我没有成功。有人能告诉我该怎么做吗?或者在这里举个例子?最好使用的基本docker映像是什么?
谢谢你最好的问候
我试着做这个dockerfile,但不工作:
FROM jupyter/minimal-notebook:lab-3.2.3
RUN pip install --no-cache-dir \
astropy \
ipytree \
ipywidgets \
jupyter \
numpy \
poliastro
RUN jupyter labextension install \
jupyterlab-plotly@4.14.2 \
plotlywidget@4.14.2
RUN pip install jupyterlab_widgets
COPY ./extensions/ ./extensions/
WORKDIR ./extensions/
RUN python -m pip install ./extensionTest
RUN jupyter labextension extensionTest
ENTRYPOINT start.sh jupyter lab
谢谢
1条答案
按热度按时间gfttwv5a1#
错误代码: