Skip to content

Instantly share code, notes, and snippets.

@bmease
Created February 3, 2015 23:33
Show Gist options
  • Save bmease/7683f5c4cb4c1755d46f to your computer and use it in GitHub Desktop.
Save bmease/7683f5c4cb4c1755d46f to your computer and use it in GitHub Desktop.
FROM dockerfile/python
RUN mkdir /app
WORKDIR /app
ADD requirements.txt /app/
RUN pip install -r requirements.txt
RUN python -m spacy.en.download
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment