mirror of
https://github.com/GNS3/gns3-registry.git
synced 2024-12-19 12:57:54 +00:00
14 lines
233 B
Docker
14 lines
233 B
Docker
FROM python:3.6.1
|
|
|
|
RUN pip3 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
|