| 12345678910111213141516 |
- # Use Anaconda as base container
- FROM continuumio/anaconda3:latest
- # Install Jupyter
- RUN /opt/conda/bin/conda install jupyter -y --quiet
- # Copy local examples to the remote notebooks
- RUN mkdir /opt/notebooks
- COPY examples /opt/notebooks
- # Port
- EXPOSE 8888
- # Run Jupyter Notebook
- CMD ["/opt/conda/bin/jupyter", "notebook", "--notebook-dir=/opt/notebooks", "--ip=0.0.0.0", "--port=8888", "--no-browser", "--allow-root"]
|