-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #85 from guenhter/latest-mitogen
Latest mitogen
- Loading branch information
Showing
3 changed files
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,13 +22,14 @@ LABEL maintainer="[email protected]" \ | |
|
||
RUN DEBIAN_FRONTEND=noninteractive apt-get update && \ | ||
apt-get install -y gnupg2 pipx sshpass git openssh-client && \ | ||
apt-get install -y python3 python3-cffi python3-mitogen python3-jmespath && \ | ||
apt-get install -y python3 python3-cffi python3-jmespath && \ | ||
rm -rf /var/lib/apt/lists/* && \ | ||
apt-get clean | ||
|
||
RUN pipx install ansible-core==${ANSIBLE_CORE_VERSION} && \ | ||
pipx install ansible==${ANSIBLE_VERSION} ansible-lint==${ANSIBLE_LINT} && \ | ||
pipx install pywinrm --include-deps && \ | ||
pip3 install mitogen && \ | ||
rm -rf /root/.cache/pip* | ||
|
||
RUN mkdir /ansible && \ | ||
|