From d83a8756604453eeefd28ab980566912c7be6b6a Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 13 Nov 2023 10:20:28 +0100 Subject: [PATCH] fix indentation in dockerfile (#195) --- Dockerfile.multiarch | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Dockerfile.multiarch b/Dockerfile.multiarch index 3f86395..d9ebe5d 100644 --- a/Dockerfile.multiarch +++ b/Dockerfile.multiarch @@ -25,13 +25,13 @@ ARG ANSIBLE_VERSION ENV ANSIBLE_VERSION="${ANSIBLE_VERSION:-8.6.1}" RUN apk --update add --virtual .build-deps python3-dev libffi-dev build-base && \ - apk add --no-cache bash git curl rsync openssh-client sshpass py3-pip py3-requests py3-paramiko && \ - apk upgrade --no-cache libcrypto3 libssl3 && \ - pip3 install -U pip && \ - pip3 install ansible=="${ANSIBLE_VERSION}" boto3 hcloud pywinrm passlib jsonschema && \ - apk del .build-deps && \ - rm -rf /var/cache/apk/* && \ - rm -rf /tmp/* + apk add --no-cache bash git curl rsync openssh-client sshpass py3-pip py3-requests py3-paramiko && \ + apk upgrade --no-cache libcrypto3 libssl3 && \ + pip3 install -U pip && \ + pip3 install ansible=="${ANSIBLE_VERSION}" boto3 hcloud pywinrm passlib jsonschema && \ + apk del .build-deps && \ + rm -rf /var/cache/apk/* && \ + rm -rf /tmp/* COPY --from=build /src/dist/drone-ansible /bin/drone-ansible ENTRYPOINT ["/bin/drone-ansible"]