FROM python:3

#Python
RUN pip install jupyter 
RUN pip install matplotlib
RUN pip install tensorflow==2.0.0-alpha0

CMD (jupyter notebook --ip 0.0.0.0 --allow-root)