Skip to content

Commit

Permalink
satisfy codacy constrains: set explicit pip version to install
Browse files Browse the repository at this point in the history
  • Loading branch information
peedy2495 committed Feb 6, 2025
1 parent d1b17e2 commit b508cd1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deployment/docker/runner/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ RUN export MITOGEN_VERSION=$(curl -s https://api.github.com/repos/mitogen-hq/mit
mkdir -p ${VIRTUAL_ENV} && \
python3 -m venv ${VIRTUAL_ENV} --system-site-packages && \
source ${VIRTUAL_ENV}/bin/activate && \
pip3 install --upgrade pip \
pip3 install --upgrade pip>=25 \
ansible==${ANSIBLE_VERSION} \
mitogen==${MITOGEN_VERSION} \
appdirs \
Expand Down
2 changes: 1 addition & 1 deletion deployment/docker/server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ RUN export MITOGEN_VERSION=$(curl -s https://api.github.com/repos/mitogen-hq/mit
mkdir -p ${VIRTUAL_ENV} && \
python3 -m venv ${VIRTUAL_ENV} --system-site-packages && \
source ${VIRTUAL_ENV}/bin/activate && \
pip3 install --upgrade pip \
pip3 install --upgrade pip>=25 \
ansible==${ANSIBLE_VERSION} \
mitogen==${MITOGEN_VERSION} \
appdirs \
Expand Down

0 comments on commit b508cd1

Please sign in to comment.