Update dockerfile to install a specific version of pipenv

Codeacy didn't like not specifying the version
This commit is contained in:
Raymond Bernardo 2021-05-31 18:10:06 -04:00
parent a4b15af866
commit 62a30a0390
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ WORKDIR /plane
COPY . .
# Add pipenv
RUN pip install pipenv
RUN pip install pipenv==2021.5.29
# Install dependencies
RUN pipenv install