From 2cf4c97c3c457f99c86ea36c4c8659cf4a9da9ff Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 7 Jun 2021 16:04:57 +0200 Subject: [PATCH] feat: add winrm python dependency --- docker/Dockerfile.amd64 | 2 +- docker/Dockerfile.arm | 2 +- docker/Dockerfile.arm64 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile.amd64 b/docker/Dockerfile.amd64 index cfb9119..d4414c2 100644 --- a/docker/Dockerfile.amd64 +++ b/docker/Dockerfile.amd64 @@ -14,7 +14,7 @@ ENV ANSIBLE_VERSION="${ANSIBLE_VERSION:-4.0.0}" RUN apk add --no-cache bash git curl rsync openssh-client sshpass py3-pip py3-requests py3-paramiko python3-dev libffi-dev libressl-dev libressl build-base && \ pip3 install -U pip && \ - pip3 install ansible=="${ANSIBLE_VERSION}" boto3 hcloud && \ + pip3 install ansible=="${ANSIBLE_VERSION}" boto3 hcloud pywinrm && \ apk del --no-cache python3-dev libffi-dev libressl-dev build-base ADD release/linux/amd64/drone-ansible /bin/ diff --git a/docker/Dockerfile.arm b/docker/Dockerfile.arm index d7a69d0..2cb6c2b 100644 --- a/docker/Dockerfile.arm +++ b/docker/Dockerfile.arm @@ -14,7 +14,7 @@ ENV ANSIBLE_VERSION="${ANSIBLE_VERSION:-4.0.0}" RUN apk add --no-cache bash git curl rsync openssh-client sshpass py3-pip py3-requests py3-paramiko python3-dev libffi-dev libressl-dev libressl build-base && \ pip3 install -U pip && \ - pip3 install ansible=="${ANSIBLE_VERSION}" boto3 hcloud && \ + pip3 install ansible=="${ANSIBLE_VERSION}" boto3 hcloud pywinrm && \ apk del --no-cache python3-dev libffi-dev libressl-dev build-base ADD release/linux/arm/drone-ansible /bin/ diff --git a/docker/Dockerfile.arm64 b/docker/Dockerfile.arm64 index c481c7d..267444b 100644 --- a/docker/Dockerfile.arm64 +++ b/docker/Dockerfile.arm64 @@ -14,7 +14,7 @@ ENV ANSIBLE_VERSION="${ANSIBLE_VERSION:-4.0.0}" RUN apk add --no-cache bash git curl rsync openssh-client sshpass py3-pip py3-requests py3-paramiko python3-dev libffi-dev libressl-dev libressl build-base && \ pip3 install -U pip && \ - pip3 install ansible=="${ANSIBLE_VERSION}" boto3 hcloud && \ + pip3 install ansible=="${ANSIBLE_VERSION}" boto3 hcloud pywinrm && \ apk del --no-cache python3-dev libffi-dev libressl-dev build-base ADD release/linux/arm64/drone-ansible /bin/