forked from p15670423/monkey
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:
parent
2edaf52140
commit
a96efcdc7d
|
@ -77,7 +77,7 @@ install_monkey_island_python_dependencies() {
|
||||||
log_message "Installing island requirements"
|
log_message "Installing island requirements"
|
||||||
|
|
||||||
log_message "Installing pipenv"
|
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"
|
log_message "Installing dependencies"
|
||||||
pushd "$BUILD_DIR/monkey_island" || handle_error
|
pushd "$BUILD_DIR/monkey_island" || handle_error
|
||||||
|
|
|
@ -6,7 +6,7 @@ WORKDIR /monkey
|
||||||
RUN virtualenv .
|
RUN virtualenv .
|
||||||
RUN . bin/activate && \
|
RUN . bin/activate && \
|
||||||
cd monkey_island && \
|
cd monkey_island && \
|
||||||
pip install pipenv && \
|
pip install pipenv==2022.7.4 && \
|
||||||
pipenv sync
|
pipenv sync
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue