mirror of
https://github.com/GNS3/gns3-registry.git
synced 2024-12-19 12:57:54 +00:00
14 lines
243 B
Docker
14 lines
243 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 --allow-root --no-browser /opt/notebooks
|