https://dpaste.de/gSO4

Are you sure to delete this snippet? No, don't delete
  1. FROM python:3.6
  2. ENV PYTHONUNBUFFERED 1
  3. WORKDIR /app
  4. COPY Pipfile Pipfile.lock ./
  5. RUN pip install -U pipenv
  6. RUN pipenv install --system -d
  7. RUN python -m spacy download en
  8. COPY . .
  9. #ENTRYPOINT ["python", "manage.py", "runserver", "0.0.0.0:8000"]
  10. EXPOSE 8000

Edit this Snippet