From 018dda5ebb625581900bd6981eecddfc6ce27c38 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Wed, 18 Jan 2023 10:28:02 +0100 Subject: [PATCH] feat: add python passlib to support ansible password modules (#121) --- docker/Dockerfile.amd64 | 2 +- docker/Dockerfile.arm64 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile.amd64 b/docker/Dockerfile.amd64 index bf9a7cc..655656b 100644 --- a/docker/Dockerfile.amd64 +++ b/docker/Dockerfile.amd64 @@ -14,7 +14,7 @@ ENV ANSIBLE_VERSION="${ANSIBLE_VERSION:-7.1.0}" RUN apk add --no-cache bash git curl rsync openssh-client sshpass py3-pip py3-requests py3-paramiko python3-dev libffi-dev build-base && \ pip3 install -U pip && \ - pip3 install ansible=="${ANSIBLE_VERSION}" boto3 hcloud pywinrm && \ + pip3 install ansible=="${ANSIBLE_VERSION}" boto3 hcloud pywinrm passlib && \ apk del --no-cache python3-dev libffi-dev build-base ADD dist/drone-ansible /bin/ diff --git a/docker/Dockerfile.arm64 b/docker/Dockerfile.arm64 index 1973add..8dd529b 100644 --- a/docker/Dockerfile.arm64 +++ b/docker/Dockerfile.arm64 @@ -14,7 +14,7 @@ ENV ANSIBLE_VERSION="${ANSIBLE_VERSION:-7.1.0}" RUN apk add --no-cache bash git curl rsync openssh-client sshpass py3-pip py3-requests py3-paramiko python3-dev libffi-dev build-base && \ pip3 install -U pip && \ - pip3 install ansible=="${ANSIBLE_VERSION}" boto3 hcloud pywinrm && \ + pip3 install ansible=="${ANSIBLE_VERSION}" boto3 hcloud pywinrm passlib && \ apk del --no-cache python3-dev libffi-dev build-base ADD dist/drone-ansible /bin/