Skip to content

Instantly share code, notes, and snippets.

@ehenry09
Created October 17, 2019 21:25
Show Gist options
  • Save ehenry09/6c7e0ad716a2212b2e82e9ee183c6d34 to your computer and use it in GitHub Desktop.
Save ehenry09/6c7e0ad716a2212b2e82e9ee183c6d34 to your computer and use it in GitHub Desktop.
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