From 8ee8e727c21a106bf7dc2b6d56cbafc233ad551d Mon Sep 17 00:00:00 2001 From: djpbessems Date: Mon, 18 Apr 2022 14:37:43 +0200 Subject: [PATCH] Add missing dependency --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b83a989..c93acc8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -58,7 +58,9 @@ RUN dpkg -i /tmp/packages-microsoft-prod.deb || true && \ curl https://omnitruck.chef.io/install.sh | bash -s -- -P inspec && \ gem update --system && gem update && \ pip3 install --upgrade pip && \ - pip3 install ansible-core && \ + pip3 install \ + ansible-core \ + requests && \ pwsh -Command "Set-PSRepository -Name 'PSGallery' -InstallationPolicy 'Trusted' -Verbose" && \ pwsh -Command "Install-Module -Name 'powershell-yaml','VMware.PowerCLI' -Verbose" && \ pwsh -Command "Set-PowerCLIConfiguration -Scope User -ParticipateInCEIP \$False -Confirm:\$False" && \