This commit is contained in:
Chris
2022-11-04 23:31:35 +01:00
parent 3e962c6c94
commit 39c6567e39
4 changed files with 21 additions and 0 deletions

8
anaconda/Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
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=''"]