Created
February 3, 2015 23:33
-
-
Save bmease/7683f5c4cb4c1755d46f 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 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