We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d5fc97 commit 631dfdfCopy full SHA for 631dfdf
Dockerfile
@@ -2,11 +2,9 @@ FROM python:3.9
2
3
WORKDIR /wsgi
4
5
-COPY Pipfile /wsgi/
+COPY Pipfile Pipfile.lock /wsgi/
6
7
-RUN pip install pipenv
8
-
9
-RUN pipenv install --deploy --ignore-pipfile
+RUN pip install pipenv && pipenv install --deploy --ignore-pipfile
10
11
RUN pipenv run python -m spacy download en_core_web_sm
12
0 commit comments