9 lines
238 B
Docker
9 lines
238 B
Docker
FROM continuumio/anaconda3
|
|
|
|
EXPOSE 8888
|
|
|
|
RUN conda install jupyter -y && \
|
|
mkdir -p /opt/notebooks
|
|
|
|
ENTRYPOINT ["jupyter", "notebook", "--notebook-dir=/opt/notebooks", "--ip='*'", "--port=8888", "--allow-root", "--NotebookApp.token=''"]
|