Use specific version of pipenv in dockerfile

This commit is contained in:
R. Miles McCain 2020-06-28 17:56:09 +00:00
parent 1a7594be93
commit 93d4ee5241
No known key found for this signature in database
GPG Key ID: F1053629E2905557

View File

@ -18,7 +18,7 @@ RUN apk update && \
apk add --no-cache postgresql-libs && \
apk add --no-cache --virtual .build-deps gcc musl-dev postgresql-dev && \
npm i -P --prefix .. && \
pip install pipenv && \
pip install pipenv~=2020.6.2 && \
pipenv install --system --deploy && \
apk --purge del .build-deps && \
rm -rf /var/lib/apt/lists/* && \