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=''"]