FROM python:3.8

EXPOSE 8888

RUN mkdir -p /opt/notebooks

RUN pip install\
	jupyter\
	jupyterlab\
	matplotlib\
	numpy\ 
	pandas\
	sklearn\
	tensorflow

ENTRYPOINT ["jupyter", "notebook", "--notebook-dir=/opt/notebooks", "--ip='*'", "--port=8888", "--allow-root", "--NotebookApp.token=''"]
