# docker build -t bitahn90/pyublas:python3 -f py3.dockerfile . # docker push bitahn90/pyublas:python3 # docker run -p 8888:8888 -it --rm -v C:\Users\Bita\Downloads:/work bitahn90/pyublas:python3 FROM debian RUN apt update && \ apt install -y libboost-all-dev python-dev python-setuptools python-pip && \ pip install numpy && \ pip install pyublas && \ pip 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=''