2021-01-29 15:00:11 +00:00
|
|
|
FROM plugins/base:linux-arm@sha256:186ca996404622ab931059474268acee0ffd64dcbf163b8a7385111f1c51af49
|
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"
|
|
|
|
|
|
|
|
# renovate: datasource=pypi depName=ansible
|
|
|
|
ENV ANSIBLE_VERSION="2.10.5"
|
2018-07-18 15:05:45 +00:00
|
|
|
|
2020-07-24 10:49:09 +00:00
|
|
|
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 && \
|
2019-09-11 11:49:39 +00:00
|
|
|
pip3 install -U pip && \
|
2021-01-26 13:05:35 +00:00
|
|
|
pip3 install ansible=="${ANSIBLE_VERSION}" boto3 hcloud && \
|
2019-09-13 12:01:57 +00:00
|
|
|
apk del --no-cache python3-dev libffi-dev libressl-dev build-base
|
2018-07-18 15:05:45 +00:00
|
|
|
|
|
|
|
ADD release/linux/arm/drone-ansible /bin/
|
|
|
|
ENTRYPOINT ["/bin/drone-ansible"]
|