forked from p15670423/monkey
Buid: Export CI to get rid of nasty characters
This commit is contained in:
parent
a96efcdc7d
commit
8355d9e68a
|
@ -78,6 +78,7 @@ install_monkey_island_python_dependencies() {
|
|||
|
||||
log_message "Installing pipenv"
|
||||
"$APPDIR"/AppRun -m pip install pipenv==2022.7.4 || handle_error
|
||||
export CI=1
|
||||
|
||||
log_message "Installing dependencies"
|
||||
pushd "$BUILD_DIR/monkey_island" || handle_error
|
||||
|
|
|
@ -4,6 +4,7 @@ FROM bitnami/python:3.7 as builder
|
|||
COPY ./monkey /monkey
|
||||
WORKDIR /monkey
|
||||
RUN virtualenv .
|
||||
RUN export CI=1
|
||||
RUN . bin/activate && \
|
||||
cd monkey_island && \
|
||||
pip install pipenv==2022.7.4 && \
|
||||
|
|
Loading…
Reference in New Issue