Guest User

Untitled

a guest
Dec 11th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. FROM python:3.6.7
  2. ENV PYTHONUNBUFFERED 1
  3. RUN mkdir /code
  4. WORKDIR /code
  5. ADD requirements.txt /code/
  6. RUN pip install --upgrade pip
  7. RUN pip install -r requirements.txt
  8. # RUN pip install -U nltk
  9. ADD . /code/
  10. RUN python -m nltk.downloader punkt
Add Comment
Please, Sign In to add comment