From 6bb423f5fc2d2769b6c987650e89365b24250d1f Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Wed, 26 Jul 2023 12:43:36 +0200 Subject: [PATCH] fix: add jsonschema python dependency --- 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 43c47b2..dcdd68d 100644 --- a/docker/Dockerfile.amd64 +++ b/docker/Dockerfile.amd64 @@ -14,7 +14,7 @@ ENV ANSIBLE_VERSION="${ANSIBLE_VERSION:-8.2.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 passlib && \ + pip3 install ansible=="${ANSIBLE_VERSION}" boto3 hcloud pywinrm passlib jsonschema && \ 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 2445d5f..c893bf4 100644 --- a/docker/Dockerfile.arm64 +++ b/docker/Dockerfile.arm64 @@ -14,7 +14,7 @@ ENV ANSIBLE_VERSION="${ANSIBLE_VERSION:-8.2.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 passlib && \ + pip3 install ansible=="${ANSIBLE_VERSION}" boto3 hcloud pywinrm passlib jsonschema && \ apk del --no-cache python3-dev libffi-dev build-base ADD dist/drone-ansible /bin/