16 lines
277 B
Docker
16 lines
277 B
Docker
FROM python:3.8
|
|
|
|
EXPOSE 8888
|
|
|
|
RUN mkdir -p /opt/notebooks
|
|
|
|
RUN pip install\
|
|
jupyter\
|
|
matplotlib\
|
|
numpy\
|
|
pandas\
|
|
sklearn\
|
|
tensorflow
|
|
|
|
ENTRYPOINT ["jupyter", "notebook", "--notebook-dir=/opt/notebooks", "--ip='*'", "--port=8888", "--allow-root", "--NotebookApp.token=''"]
|