Files
docker_dev_stacks/data_science/Dockerfile

16 lines
277 B
Docker

FROM python:3.9
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=''"]