Created
October 17, 2019 21:25
-
-
Save ehenry09/6c7e0ad716a2212b2e82e9ee183c6d34 to your computer and use it in GitHub Desktop.
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 python:3 | |
COPY notebooks /notebooks | |
COPY requirements.txt requirements.txt | |
RUN pip install --upgrade pip && \ | |
pip install -r requirements.txt | |
COPY notebooks /notebooks | |
WORKDIR notebooks | |
CMD ["jupyter", "notebook", "--no-browser", "--ip=0.0.0.0", "--allow-root"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment