Skip to content

Instantly share code, notes, and snippets.

@taless474
Last active November 27, 2018 19:10
Show Gist options
  • Save taless474/1aa2cf67d828e6ecfb079bccfeaa459a to your computer and use it in GitHub Desktop.
Save taless474/1aa2cf67d828e6ecfb079bccfeaa459a to your computer and use it in GitHub Desktop.
Dockerfile for pyublas
# docker run -p 8888:8888 -it --rm -v C:\Users\Bita\Downloads:/home/jovyan/work bitahn
90/pyublas
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment