Created
December 19, 2017 12:26
-
-
Save vaclavcadek/a2ba9500d967506666da274d9f4eb2a6 to your computer and use it in GitHub Desktop.
Jupyter notebook minimal configuration.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:latest | |
MAINTAINER Vaclav Cadek | |
RUN apt-get update | |
RUN apt-get install python-virtualenv -y | |
RUN virtualenv -p /usr/bin/python3 ~/venv | |
RUN . ~/venv/bin/activate | |
RUN ~/venv/bin/pip install numpy pandas matplotlib jupyter | |
EXPOSE 8888 | |
CMD ["sh", "-c", "/root/venv/bin/jupyter notebook --no-browser --ip=*"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment