2023-06-15 07:56:12 +00:00
|
|
|
FROM docker.io/alpine:3.18@sha256:82d1e9d7ed48a7523bdebc18cf6290bdb97b82302a8a9c27d4fe885949ea94d1
|
2018-07-18 15:05:45 +00:00
|
|
|
|
2021-01-26 13:05:35 +00:00
|
|
|
LABEL maintainer="ownCloud DevOps <devops@owncloud.com>"
|
|
|
|
LABEL org.opencontainers.image.authors="ownCloud DevOps <devops@owncloud.com>"
|
|
|
|
LABEL org.opencontainers.image.title="drone-ansible"
|
|
|
|
LABEL org.opencontainers.image.url="https://github.com/owncloud-ci/drone-ansible"
|
|
|
|
LABEL org.opencontainers.image.source="https://github.com/owncloud-ci/drone-ansible"
|
|
|
|
LABEL org.opencontainers.image.documentation="https://github.com/owncloud-ci/drone-ansible"
|
|
|
|
|
2021-02-09 09:45:07 +00:00
|
|
|
ARG ANSIBLE_VERSION
|
|
|
|
|
2021-01-26 13:05:35 +00:00
|
|
|
# renovate: datasource=pypi depName=ansible
|
2023-05-31 06:11:28 +00:00
|
|
|
ENV ANSIBLE_VERSION="${ANSIBLE_VERSION:-8.0.0}"
|
2018-07-18 15:05:45 +00:00
|
|
|
|
2021-06-16 08:20:01 +00:00
|
|
|
RUN apk add --no-cache bash git curl rsync openssh-client sshpass py3-pip py3-requests py3-paramiko python3-dev libffi-dev build-base && \
|
2019-09-11 11:49:39 +00:00
|
|
|
pip3 install -U pip && \
|
2023-01-18 09:28:02 +00:00
|
|
|
pip3 install ansible=="${ANSIBLE_VERSION}" boto3 hcloud pywinrm passlib && \
|
2021-06-16 08:20:01 +00:00
|
|
|
apk del --no-cache python3-dev libffi-dev build-base
|
2018-07-18 15:05:45 +00:00
|
|
|
|
2022-04-25 13:54:18 +00:00
|
|
|
ADD dist/drone-ansible /bin/
|
|
|
|
|
2018-07-18 15:05:45 +00:00
|
|
|
ENTRYPOINT ["/bin/drone-ansible"]
|