Add missing dependency #3
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Danny Bessems 2022-04-18 22:14:33 +02:00
parent 4f36a48581
commit 436ec64266
1 changed files with 4 additions and 2 deletions

View File

@ -60,7 +60,9 @@ RUN dpkg -i /tmp/packages-microsoft-prod.deb || true && \
pip3 install --upgrade pip && \ pip3 install --upgrade pip && \
pip3 install \ pip3 install \
ansible-core \ ansible-core \
# (pyvmomi & requests) Dependency for vmware_guest module # (netaddr) Dependency for Ansible 'ipaddr' filter
netaddr \
# (pyvmomi & requests) Dependency for Ansible 'vmware_guest' module
pyvmomi \ pyvmomi \
requests && \ requests && \
pwsh -Command "Set-PSRepository -Name 'PSGallery' -InstallationPolicy 'Trusted' -Verbose" && \ pwsh -Command "Set-PSRepository -Name 'PSGallery' -InstallationPolicy 'Trusted' -Verbose" && \
@ -75,4 +77,4 @@ RUN dpkg -i /tmp/packages-microsoft-prod.deb || true && \
rm -f /tmp/ovftool-installer rm -f /tmp/ovftool-installer
ENTRYPOINT [] ENTRYPOINT []
CMD [] CMD []