Skip to content
Permalink
Branch: master
Find file Copy path
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time
22 lines (17 sloc) 650 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
COPY aunb.py $HOME
# Start Jupyter Notebook.
CMD ["start-notebook.sh"]
You can’t perform that action at this time.