Build: Downgrade pipenv to use 2022.7.4

It seems that every time a new version of pipenv is released, it breaks
our build. See also 01e886f866.
This commit is contained in:
Ilija Lazoroski 2022-08-17 14:29:23 +02:00 committed by Mike Salvatore
parent 2edaf52140
commit a96efcdc7d
2 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ install_monkey_island_python_dependencies() {
log_message "Installing island requirements"
log_message "Installing pipenv"
"$APPDIR"/AppRun -m pip install pipenv || handle_error
"$APPDIR"/AppRun -m pip install pipenv==2022.7.4 || handle_error
log_message "Installing dependencies"
pushd "$BUILD_DIR/monkey_island" || handle_error

View File

@ -6,7 +6,7 @@ WORKDIR /monkey
RUN virtualenv .
RUN . bin/activate && \
cd monkey_island && \
pip install pipenv && \
pip install pipenv==2022.7.4 && \
pipenv sync