Skip to content
Permalink
Branch: master
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time
21 lines (16 sloc) 631 Bytes
# Ubuntu 18.04
# https://github.com/jupyter/docker-stacks/blob/master/base-notebook/Dockerfile
FROM jupyter/base-notebook
# Metadata
LABEL maintainer="Nick Ruest <ruestn@gmail.com>"
LABEL description="Docker image for Archives Unleashed Cloud: Jupyter Notebooks"
LABEL website="https://archivesunleashed.org/"
# Install auk-notebook dependencies.
COPY requirements.txt /tmp/requirements.txt
RUN pip install -r /tmp/requirements.txt
RUN python -m nltk.downloader punkt vader_lexicon stopwords
# Copy auk-notebook files over.
COPY data $HOME/data
COPY auk-notebook.ipynb $HOME
# Start Jupyter Notebook.
CMD ["start-notebook.sh"]
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.