Skip to content

Commit

Permalink
Modifies pip package installation
Browse files Browse the repository at this point in the history
  • Loading branch information
Prasuna Madasu committed Sep 21, 2023
1 parent 9785e10 commit 123efaa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions jenkins-inbound-agent/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@ RUN set -eux; \
unzip awscliv2.zip && ./aws/install && rm awscliv2.zip && rm -rf aws; \

#### install boto3, checov and pre-commit
pip3 install --no-cache-dir -U boto3 checkov==${CHECKOV_VERSION} pre-commit; \
pip3 install --no-cache-dir -U boto3 checkov==${CHECKOV_VERSION} pre-commit --break-system-packages; \

#### install ansible
pip3 install --no-cache-dir ansible==${ANSIBLE_VERSION}; \
pip3 install --no-cache-dir hvac==${PIP_HVAC_VERSION}; \
pip3 install --no-cache-dir ansible==${ANSIBLE_VERSION} --break-system-packages; \
pip3 install --no-cache-dir hvac==${PIP_HVAC_VERSION} --break-system-packages; \

#### install vault
curl -L "${VAULT_DOWNLOAD_URL}" -o "vault.zip"; \
Expand Down

0 comments on commit 123efaa

Please sign in to comment.