# docker build -t bitahn90/pyublas:python2 -f py2.dockerfile . # docker push bitahn90/pyublas:python2 # docker run -p 8888:8888 -it --rm -v C:\Users\Bita\Downloads:/work bitahn90/pyublas:python2 FROM debian RUN apt update && \ apt install -y libboost-all-dev python3-dev python3-setuptools python3-pip && \ pip3 install numpy && \ pip3 install pyublas && \ pip3 install jupyterlab && \ mkdir /work WORKDIR /work CMD /usr/local/bin/jupyter-lab --ip=0.0.0.0 --no-browser --allow-root --NotebookApp.token='' --NotebookApp.password=''