mirror of
https://github.com/GNS3/gns3-registry.git
synced 2024-12-21 13:47:49 +00:00
14 lines
230 B
Docker
14 lines
230 B
Docker
|
FROM python:2.7
|
||
|
|
||
|
RUN pip install jupyter
|
||
|
|
||
|
ADD jupyter_notebook_config.py /root/.jupyter/jupyter_notebook_config.py
|
||
|
|
||
|
RUN mkdir -p /opt/notebooks
|
||
|
|
||
|
EXPOSE 8888
|
||
|
|
||
|
VOLUME /opt/notebooks
|
||
|
|
||
|
CMD jupyter notebook --no-browser /opt/notebooks
|